bounceOutDown.css 281 B

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