12_animation.html 607 B

12345678910111213141516171819202122232425262728293031
  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 linear 1s 2 forwards;
  14. }
  15. @keyframes run {
  16. 10% {
  17. width: 800px;
  18. }
  19. 50%{
  20. width: 200px;
  21. }
  22. 100%{
  23. width: 1000px;
  24. }
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="div1"></div>
  30. </body>
  31. </html>l