1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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;
- /* 观察者视角位置 */
- /* perspective-origin: right bottom; */
- /* perspective-origin: 100px 10px; */
- }
- .box{
- width: 400px;
- height: 400px;
- border:1px dashed black;
- margin:100px auto;
- transform-style: preserve-3d;
- }
- .box img{
- width: 400px;
- transition: all .5s linear;
- }
- .box img:nth-child(1){
- transform: rotate(15deg);
- }
- .box img:nth-child(2){
- transform: rotate(-15deg);
- }
- .box img:nth-child(1):hover{
- /* transform: rotate(0) scale(2); */
- /* transform: translateZ(500px) rotate(0); */
- transform: translateZ(500px);
-
- }
- .box img:nth-child(2):hover{
- /* transform: rotate(0) scale(2); */
- transform: translateZ(300px);
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img src="./img/image3.png" alt="img">
- <img src="./img/image4.png" alt="img">
- </div>
- </body>
- </html>
|