bounceOutDown.css 281 B

123456789101112131415161718192021
  1. @keyframes bounceOutDown {
  2. 20% {
  3. transform: translate3d(0, 10px, 0);
  4. }
  5. 40%,
  6. 45% {
  7. opacity: 1;
  8. transform: translate3d(0, -20px, 0);
  9. }
  10. to {
  11. opacity: 0;
  12. transform: translate3d(0, 2000px, 0);
  13. }
  14. }
  15. .bounceOutDown {
  16. animation-name: bounceOutDown;
  17. }