main

animate-css/animate.css

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

slideOutRight.css

TLDR

This file provides CSS animations for a sliding exit effect to the right.

Classes

slideOutRight

This class applies the slideOutRight animation to an element, causing it to slide out to the right.

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

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

.slideOutRight {
  animation-name: slideOutRight;
}