使用css3动画时,在IOS真机上出现闪烁。
目前发现闪烁是有前提因素的,就是css动画的View是使用“position: absolute;”并超出视觉区域的就会出现闪烁。
.box{
|
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes rotate-opposite { 100% { transform: rotate(-360deg); } } |
<
view
class
=
"box"
>
<
view
class
=
"animation"
></
view
>
<
view
class
=
"animationB"
></
view
>
</
view
>
|