doc_keyframes.html 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Yay! Keyframes!</title>
  6. <style>
  7. div {
  8. animation: wow 100s forwards;
  9. }
  10. @keyframes wow {
  11. 0% {
  12. width: 100px;
  13. height: 100px;
  14. border-radius: 0px;
  15. background: #f06;
  16. }
  17. 10% {
  18. border-radius: 2px;
  19. }
  20. 20% {
  21. transform: rotate(13deg);
  22. }
  23. 30% {
  24. background: gold;
  25. }
  26. 40% {
  27. filter: blur(40px);
  28. }
  29. 50% {
  30. transform: rotate(720deg) translateX(300px) skew(-13deg);
  31. }
  32. 60% {
  33. width: 200px;
  34. height: 200px;
  35. }
  36. 70% {
  37. border-radius: 10px;
  38. }
  39. 80% {
  40. background: #333;
  41. }
  42. 90% {
  43. border-radius: 50%;
  44. }
  45. 100% {
  46. width: 500px;
  47. height: 500px;
  48. }
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <div></div>
  54. </body>
  55. </html>