CSS3新特性Div盒子360度旋转
直接给你想360度不停旋转的盒子设置下面这个代码就ok了。很简单,
如果有不懂的可以在下面留言,我帮你搞一搞。
animation: circling 1s linear 0s infinite;
@keyframes circling {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
animation: circling 1s linear 0s infinite;
@keyframes circling {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}