2_缩放.html 796 B

12345678910111213141516171819202122232425262728
  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: blue;
  12. margin: 100px auto;
  13. border-radius: 50%;
  14. }
  15. .box:hover{
  16. /* width: 200px;
  17. height: 200px; */
  18. /* scale 缩放 以当前元素中心点进行缩放 取值范围大于0 大于一为放大比例 小于一为缩小比例 */
  19. /* transform: scale(0.5); */
  20. /* scaleX 横向缩放 scaleY 纵向缩放 */
  21. /* transform: scaleX(2); */
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="box"></div>
  27. </body>
  28. </html>