4_过度.html 753 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 200px;
  10. height: 200px;
  11. background-color: red;
  12. /* transition: all 1s linear; */
  13. transition-property: all;
  14. transition-duration: 1s;
  15. transition-timing-function: linear;
  16. /* position: fixed;
  17. top: 0;
  18. left: 0; */
  19. }
  20. .box:hover{
  21. width: 600px;
  22. height: 600px;
  23. /* top: 200px;
  24. left: 200px; */
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box">
  30. </div>
  31. </body>
  32. </html>