12_animation.html 587 B

1234567891011121314151617181920212223242526272829303132
  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: red;
  13. animation: run 5s linear 1s 2 ;
  14. }
  15. /* 定义动画 */
  16. @keyframes run{
  17. 10%{
  18. width: 800px;
  19. }
  20. 50%{
  21. width: 100px;
  22. }
  23. 100%{
  24. width: 300px;
  25. }
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="div1"></div>
  31. </body>
  32. </html>