main

animate-css/animate.css

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

fadeOutLeft.css

TLDR

This file contains a CSS keyframe animation that fades out an element and moves it to the left.

Classes

.fadeOutLeft

This class applies the fadeOutLeft animation to an element, causing it to fade out and move to the left.

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}