12_animation.html 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1 {
  10. width: 200px;
  11. height: 200px;
  12. background: aqua;
  13. animation: run 5s ease 1s 2 forwards;
  14. /*
  15. @keyframes 动画模式
  16. animation-name 名称
  17. animation-duration 执行事件
  18. animation-delay 延迟时间
  19. animation-iteration-count 执行次数
  20. animation-direction 向前播放 向后播放 循环播放
  21. animation-timing-function 速度曲线
  22. animation-fill-mode 没有播放时候的样式
  23. animation
  24. */
  25. }
  26. @keyframes run {
  27. 10% {
  28. width: 800px;
  29. }
  30. 50% {
  31. width: 200px;
  32. }
  33. 100% {
  34. width: 400px;
  35. }
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div id="div1"></div>
  41. </body>
  42. </html>