12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!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:1px dashed black;
- margin:100px auto;
- transform-style: preserve-3d;
- }
- .box img{
- width: 300px;
- transition: all 1s linear;
-
- }
- .box img:nth-child(1){
- transform: rotate(45deg);
- }
- .box img:nth-child(2){
- transform: rotate(-45deg);
- }
- .box img:nth-child(1):hover{
- transform:rotate(180deg) scale(2) translateZ(2px);
- }
- .box img:nth-child(2):hover{
- transform: translateZ(500px);
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img src="./img/image1.png" alt="">
- <img src="./img/image.png" alt="">
- </div>
- </body>
- </html>
|