4_变形缩放.html 733 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. .div1{
  9. width: 200px;
  10. height: 200px;
  11. border:3px dashed black;
  12. margin:300px auto;
  13. }
  14. .div2{
  15. width: 200px;
  16. height: 200px;
  17. background-color: red;
  18. }
  19. .div2:hover{
  20. /* width: 100px;
  21. height: 100px; */
  22. /* 缩放 括号中的值是缩放比例 */
  23. transform: scale(0.5);
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="div1">
  29. <div class="div2"></div>
  30. </div>
  31. </body>
  32. </html>