main

animate-css/animate.css

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

fadeOutLeftBig.css

TLDR

The provided file is a CSS file that defines a keyframe animation called fadeOutLeftBig and applies it to an element with the class fadeOutLeftBig.

Classes

fadeOutLeftBig

This class applies the fadeOutLeftBig animation to an element. The animation starts with an opacity of 1 and gradually decreases the opacity to 0. Additionally, it translates the element 2000 pixels to the left.

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}