bounceOut.css 292 B

12345678910111213141516171819202122
  1. @keyframes bounceOut {
  2. 20% {
  3. transform: scale3d(0.9, 0.9, 0.9);
  4. }
  5. 50%,
  6. 55% {
  7. opacity: 1;
  8. transform: scale3d(1.1, 1.1, 1.1);
  9. }
  10. to {
  11. opacity: 0;
  12. transform: scale3d(0.3, 0.3, 0.3);
  13. }
  14. }
  15. .bounceOut {
  16. animation-duration: 0.75s;
  17. animation-name: bounceOut;
  18. }