main

animate-css/animate.css

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

fadeInUpBig.css

TLDR

This file defines CSS animations for fading in an element and moving it up. It provides a keyframe animation called "fadeInUpBig" that starts with the element being invisible and positioned 2000 pixels below its original position, and ends with the element being fully visible and in its original position. This animation can be applied to elements with the class name "fadeInUpBig".

Methods

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}