main

animate-css/animate.css

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

fadeInDownBig.css

TLDR

This file provides the CSS animation keyframes and class for a fade in down big effect.

Classes

fadeInDownBig

The fadeInDownBig class is used to apply the fade in down big animation effect to an element. The animation gradually increases the opacity of the element from 0 to 1 while moving it down from a higher position to its original position.

END

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}