main

animate-css/animate.css

Last updated at: 29/12/2023 09:20

slideOutUp.css

TLDR

This file contains CSS code that defines an animation called slideOutUp and applies it to the class .slideOutUp. The animation moves an element upwards and makes it invisible.

Methods (if applicable)

N/A

Classes (if applicable)

.slideOutUp

This class applies the slideOutUp animation to an element. The animation moves the element upwards and makes it invisible.

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}