两层coverview,子元素动画在安卓上很卡
- 当前 Bug 的表现(可附上截图)
两层coverview,子元素动画在安卓上很卡,苹果不卡,开发工具不卡
测试机 小米9 红米K20PRO 魅族16S IPHONE7PLUS
- 提供一个最简复现 Demo
wxss
/* pages/test/test.wxss */.qq1{ width: 100%; height: 100%;}.qq2 { animation-duration: 5s; animation-name: donghua1; animation-fill-mode: forwards; width: 100rpx; height: 100rpx; background-color: red; border-radius: 50rpx;}@keyframes donghua1 { 0% { margin-left: 100%; } 100% { margin-left: 0%; }} |
wxml
<!--pages/test/test.wxml--><text>pages/test/test.wxml</text><cover-view class="qq1"> <cover-view class="qq2"></cover-view></cover-view> |
