bounceOutLeft.css 223 B

12345678910111213141516
  1. @keyframes bounceOutLeft {
  2. 20% {
  3. opacity: 1;
  4. transform: translate3d(20px, 0, 0);
  5. }
  6. 100% {
  7. opacity: 0;
  8. transform: translate3d(-2000px, 0, 0);
  9. }
  10. }
  11. .bounceOutLeft {
  12. animation-name: bounceOutLeft;
  13. }