main

animate-css/animate.css

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

fadeOutRightBig.css

TLDR

The provided file contains CSS code for the animation effect fadeOutRightBig, which causes an element to fade out and move to the right.

Classes

fadeOutRightBig

This class applies the fadeOutRightBig animation effect to an element, causing it to fade out and move to the right.

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}