1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!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: 400px;
- height: 400px;
- border:2px dashed black;
- margin:300px auto;
- }
- .box img{
- width: 400px;
- transition: all 1s linear;
- }
- .box img:first-child{
- transform: rotate(45deg) ;
- position: relative;
- }
- .box img:nth-child(2){
- transform: rotate(-45deg) ;
- position: relative;
- }
- .box img:hover{
- transform: rotate(0) scale(1.5) ;
- z-index: 2;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img src="./img/slider1.jpg" alt="">
- <img src="./img/slider2.jpeg" alt="">
-
- </div>
- </body>
- </html>
|