main

animate-css/animate.css

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

slideInLeft.css

TLDR

The provided CSS file contains the animation keyframes and class definitions for the "slideInLeft" sliding entrance effect.

Classes

.slideInLeft

This class defines the animation name for the "slideInLeft" effect.

END

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

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

.slideInLeft {
  animation-name: slideInLeft;
}