两层coverview,子元素动画在安卓上很卡
- 当前 Bug 的表现(可附上截图)
两层coverview,子元素动画在安卓上很卡,苹果不卡,开发工具不卡
测试机 小米9 红米K20PRO 魅族16S IPHONE7PLUS
- 提供一个最简复现 Demo
wxss
/* pages/test/test.wxss */ .qq 1 { width : 100% ; height : 100% ; } .qq 2 { animation-duration: 5 s; animation-name: donghua 1 ; animation-fill-mode: forwards; width : 100 rpx; height : 100 rpx; background-color : red ; border-radius: 50 rpx; } [@keyframes](/user/keyframes) donghua 1 { 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 > |
1 回复
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)