main

animate-css/animate.css

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

slideInUp.css

TLDR

The slideInUp.css file contains CSS code for creating an animation called slideInUp. This animation slides an element from below to its original position.

Classes

.slideInUp

This class applies the slideInUp animation to an element, causing it to slide in from below and move to its original position.

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}