main

animate-css/animate.css

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

bounceOutRight.css

TLDR

This file contains CSS code for the bounceOutRight animation effect.

Methods

N/A

Classes

bounceOutRight

This class applies the bounceOutRight animation effect to an element.

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}