631e2328535f8aa7df2b005cfa902bb134be98c7d6c29fa6eba7b33a8d3ef5f33911360c00b4b30d53cc5ee3ff96c5d48aa6866d8897276b8a86278c2c16ff 323 B

123456789101112131415161718192021
  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: calc(var(--animate-duration) * 0.75);
  17. animation-name: bounceOut;
  18. }