微信小程序animation-play-state ios不起作用
发布于 6 年前 作者 taoxiong 3575 次浏览 来自 问答

 /* 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);

 }

}

3 回复

你好,请具体描述你的问题,提供能复现问题的代码片段(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不起作用 模拟器 安卓都是好的

回到顶部