使用css3动画时,在IOS真机上出现闪烁。
目前发现闪烁是有前提因素的,就是css动画的View是使用“position: absolute;”并超出视觉区域的就会出现闪烁。
.box{
width : 100% ;
height : 600 rpx;
} .animation,.animationB{
width : 550 rpx;
height : 550 rpx;
position : absolute ;
right : -200 rpx;
top : -200 rpx;
|
[@keyframes](/user/keyframes) rotate { 100% { transform: rotate(360deg); } } [@keyframes](/user/keyframes) rotate-opposite { 100% { transform: rotate(-360deg); } } |
< view class = "box" > < view class = "animation" ></ view > < view class = "animationB" ></ view > </ view > |
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。