5_CSS3缩放.html 694 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. }
  15. body{
  16. width: 100vw;
  17. height: 100vh;
  18. position: relative;
  19. }
  20. body:hover .box{
  21. transform:scale(3);
  22. position: absolute;
  23. right: 0;
  24. bottom: 0;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box"></div>
  30. </body>
  31. </html>