1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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: 200px;
- height: 200px;
- border:1px dashed black;
- margin: 100px auto;
- transform-style: preserve-3d;
- position: relative;
- }
- .div1,.div2{
- width: 200px;
- height: 200px;
- transition: all 1s linear;
- position: absolute;
- top:0;
- left: 0;
- }
- .box:hover .div1{
- transform:rotateY(180deg) translateZ(1px);
- }
- .div1{
- background-color: red;
- }
- .div2{
- background-color: blue;
- }
- .box:hover .div2{
- transform: rotateY(180deg) translateZ(2px);
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="div1"></div>
- <div class="div2"></div>
- </div>
- </body>
- </html>
|