main

animate-css/animate.css

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

slideInRight.css

TLDR

This file defines a CSS animation called "slideInRight" and a CSS class called "slideInRight" which applies the animation to an element.

Classes

slideInRight

This class applies the "slideInRight" animation to an element. It animates the element by sliding it in from the right side of the screen.

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

.slideInRight {
  animation-name: slideInRight;
}