5_CSS3缩放.html 702 B

1234567891011121314151617181920212223242526272829303132
  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: 100px;
  10. height: 100px;
  11. background-color: red;
  12. transition: all 1s;
  13. position: absolute;
  14. top:100px;
  15. left: 100px;
  16. }
  17. body{
  18. width: 100vw;
  19. height: 100vh;
  20. position: relative;
  21. }
  22. body:hover .box{
  23. transform:scale(3);
  24. top: 400px;
  25. left: 400px;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box"></div>
  31. </body>
  32. </html>