- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
var option = {
duration: 1000,
timingFunction: 'ease-in'
}
var animation = wx.createAnimation(option)
animation.translateY(-100)
animation.opacity(0.5)
animation.step(option)
this.setData({
animation: animation.export()
})
setTimeout(res => {
animation.translateY(0)
animation.opacity(1)
animation.step(option)
this.setData({
animation: animation.export()
})
}, 1000)
如果是ios12.0animation动画失效的问题,已修复,待版本更新上线,此类问题可通过搜索找答案
我的是安卓android 7.1.2
麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
求官方人员解答下呀!