tada.css 418 B

1234567891011121314151617181920212223242526272829303132
  1. @keyframes tada {
  2. from {
  3. transform: scale3d(1, 1, 1);
  4. }
  5. 10%,
  6. 20% {
  7. transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  8. }
  9. 30%,
  10. 50%,
  11. 70%,
  12. 90% {
  13. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  14. }
  15. 40%,
  16. 60%,
  17. 80% {
  18. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  19. }
  20. to {
  21. transform: scale3d(1, 1, 1);
  22. }
  23. }
  24. .tada {
  25. animation-name: tada;
  26. }