main

animate-css/animate.css

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

fadeInRight.css

TLDR

The file fadeInRight.css contains CSS code for animating an element to fade in from the right side of the screen.

Methods

There are no methods in this file.

Classes

fadeInRight

This class applies a fade-in animation from the right side to an element. It utilizes the fadeInRight keyframes animation defined in the file.

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

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

.fadeInRight {
  animation-name: fadeInRight;
}