main

animate-css/animate.css

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

fadeInRightBig.css

TLDR

This file defines an animation called fadeInRightBig which fades in an element from the right side of the screen.

END

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}