main

animate-css/animate.css

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

fadeOutRight.css

TLDR

The provided file defines a CSS animation called fadeOutRight which fades out an element while moving it to the right.

Classes

.fadeOutRight

This class applies the fadeOutRight animation to an element, causing it to fade out while moving to the right.

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}