IOS出现css动画闪烁
使用css3动画时,在IOS真机上出现闪烁。
目前发现闪烁是有前提因素的,就是css动画的View是使用“position: absolute;”并超出视觉区域的就会出现闪烁。
.box{ width: 100%; height: 600rpx;
}.animation,.animationB{ width: 550rpx; height: 550rpx; position: absolute; right:-200rpx; top:-200rpx;
|
@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> |
