| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!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>
- body{
- perspective: 1000px;
- }
- .box{
- width: 400px;
- height: 400px;
- border:2px dashed black;
- margin: 200px auto;
- transform-style: preserve-3d;
- }
- .box img{
- width: 400px;
- transition: all 1s linear;
- }
- .img1{
- transform: rotate(45deg);
- }
- .img2{
- transform: rotate(-30deg);
- }
- .img1:hover,.img2:hover{
- transform: translateZ(500px);
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img class="img1" src="./img/swiper.jpg" alt="img">
- <img class="img2" src="./img/swiperimg.jpg" alt="img">
- </div>
- </body>
- </html>
|