微信小程序animation-play-state ios不起作用
/* transform:rotate(0deg);
transform-origin: center center;
animation: go 5s linear infinite normal; */
animation: go 10s linear infinite;
}
@keyframes go {
/* 0% {transform: rotate(0deg);opacity: 1}
100% {transform: rotate(360deg);opacity: 1} */
100% {
transform: rotate(1turn);
}
}
