这是我用了的属性,还少了什么?
.topDiv .cloundBig{
width: 10rem;
animation-duration:8s;
animation-name: cloundBig;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@-webkit-keyframes cloundBig {
0% { margin-left: 50% }
100% { margin-left: 60% }
}
平移建议使用 transform ,因为margin会引起重绘 消耗性能