123456789101112131415161718192021222324252627282930313233 |
- <!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: 200px;
- height: 200px;
- background-color: red;
- /* transition: all 1s linear; */
- transition-property: all;
- transition-duration: 1s;
- transition-timing-function: linear;
- /* position: fixed;
- top: 0;
- left: 0; */
- }
- .box:hover{
- width: 600px;
- height: 600px;
- /* top: 200px;
- left: 200px; */
- }
- </style>
- </head>
- <body>
- <div class="box">
- </div>
- </body>
- </html>
|