main

animate-css/animate.css

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

fadeInLeft.css

TLDR

This file defines the fadeInLeft animation and the corresponding CSS class .fadeInLeft for fading in an element from the left side of the screen.

Methods

N/A

Classes

N/A

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}