bounce.css 549 B

1234567891011121314151617181920212223242526
  1. @keyframes bounce {
  2. 0%, 20%, 53%, 80%, 100% {
  3. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  4. transform: translate3d(0,0,0);
  5. }
  6. 40%, 43% {
  7. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  8. transform: translate3d(0, -30px, 0);
  9. }
  10. 70% {
  11. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  12. transform: translate3d(0, -15px, 0);
  13. }
  14. 90% {
  15. transform: translate3d(0,-4px,0);
  16. }
  17. }
  18. .bounce {
  19. animation-name: bounce;
  20. transform-origin: center bottom;
  21. }