/* 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);
}
}
你好,请具体描述你的问题,提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html?search-key=%E4%BB%A3%E7%A0%81%E7%89%87%E6%AE%B5)
.clock {
transform-origin: center center;
animation: go 10s 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);
} */
}
这个效果给 animation-play-state 这个状态 ios不起作用 模拟器 安卓都是好的