main

animate-css/animate.css

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

fadeInLeftBig.css

TLDR

This file defines a CSS animation called fadeInLeftBig that fades an element in while moving it from left to right.

Classes

.fadeInLeftBig

This class applies the fadeInLeftBig animation to an element, causing it to fade in while moving it from left to right.

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}