完全照抄你的,都实现不出来3D效果
.box{
height:100px;
width:100px;
background:red;
margin:50px auto;
animation: move 1s infinite;
}
@keyframes move{
0%{transform:rotate(0deg);}
100%{transform:rotate(720deg);}
自己刚写的