main

animate-css/animate.css

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

bounceOutLeft.css

TLDR

This file contains a CSS animation named "bounceOutLeft" that animates an element to bounce out towards the left side of the screen.

Classes

bounceOutLeft

This class applies the "bounceOutLeft" animation to an element.

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}