main

animate-css/animate.css

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

fadeInBottomRight.css

TLDR

This CSS file defines a animation called fadeInBottomRight and a class called .fadeInBottomRight that applies the animation to an element.

Classes

fadeInBottomRight

This class applies the fadeInBottomRight animation to the element it is applied to. It animates the element to fade in from the bottom right corner of the screen.

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

.fadeInBottomRight {
  animation-name: fadeInBottomRight;
}