main

animate-css/animate.css

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

slideOutLeft.css

TLDR

This file contains CSS code for animating an element to slide out to the left.

Classes

.slideOutLeft

This class applies the animation slideOutLeft to the element, causing it to slide out to the left.

END

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}