bounceOut.css 257 B

1234567891011121314151617181920
  1. @keyframes bounceOut {
  2. 20% {
  3. transform: scale3d(.9, .9, .9);
  4. }
  5. 50%, 55% {
  6. opacity: 1;
  7. transform: scale3d(1.1, 1.1, 1.1);
  8. }
  9. 100% {
  10. opacity: 0;
  11. transform: scale3d(.3, .3, .3);
  12. }
  13. }
  14. .bounceOut {
  15. animation-name: bounceOut;
  16. }