赞
踩
1.实现代码:
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- body{
- perspective: 3000px;
- }
- @keyframes myAnimation {
- from{
- transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
- }
- to{
- transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
- }
- }
- .container{
- margin:200px;
- position: relative;
- transform-style: preserve-3d;
- animation-name: myAnimation;
- animation-duration: 8s;
- animation-timing-function: linear;
- animation-delay: 0s;
- animation-iteration-count: infinite;
-
- }
- .container:hover>img:first-child{
- left: -300px;
- }
- .container:hover>img:nth-child(2){
- top: -300px;
- }
- .container:hover>img:nth-child(3){
- left: 300px;
- }
- .container:hover>img:nth-child(4){
- top: 300px;
- }
- .container:hover>img:nth-child(6){
- transform: translateZ(300px);
- }
- .container:hover>img:nth-child(5){
- transform: translateZ(-100px);
- }
- .container>img{
- width: 200px;
- height: 200px;
- position: absolute;
- border: 1px solid red;
- transition: 3s
- }
- .container>img:first-child{
- left: -200px;
- transform-origin: right;
- transform: rotateY(90deg);
- }
- .container>img:nth-child(2){
- top:-200px;
- transform-origin: bottom;
- transform:rotateX(-90deg);
- }
- .container>img:nth-child(3){
- left: 200px;
- transform-origin: left;
- transform:rotateY(-90deg)
- }
- .container>img:nth-child(4){
- top: 200px;
- transform-origin: top;
- transform: rotateX(90deg);
- }
- .container>img:nth-child(6){
- transform: translateZ(200px);
- }
- </style>
- </head>
- <body>
- <div class="container">
- <img src="https://img1.baidu.com/it/u=1512380121,3450729774&fm=253&fmt=auto&app=138&f=JPEG?w=174&h=164" alt="">
- <img src="https://p1.hoopchina.com.cn/personPic/6de79b9b-ed1f-4141-85bb-838e7cd9a48e.jpg?x-oss-process=image/resize,w_800/format,jpg" alt="">
- <img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F7fcf99e0-3485-4d80-bf92-f66f4572c5d2%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1705924570&t=a2eae4d55f7c75ebbb3baec353d92066" alt="">
- <img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F0231c359-3671-4cc4-b162-dbab09b5b0f9%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1705924570&t=84ae2e05d00fc492e6297b839fdea8d6" alt="">
- <img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F1f2afeb2-253a-4be1-87dd-6d266517f4f7%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1705924570&t=fe1bd16abbdeba072c1baff5a4683a5d" alt="">
- <img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F91baae03-e1f4-4662-b16a-270ff58c5d60%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1705924570&t=ece1717322c1ec6c6922c80794318218" alt="">
- </div>
- </body>
- </html>
旋转立方体
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。