1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 100px;
- height: 100px;
- background-color: red;
- transition: all 1s;
- position: absolute;
- top:100px;
- left: 100px;
- }
- body{
- width: 100vw;
- height: 100vh;
- position: relative;
- }
- body:hover .box{
- transform:scale(3);
- top: 400px;
- left: 400px;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|