这是将数组的数据一个一个渲染出来的动画,在开发者工具上运行的效果非常好
但是在用小程序体验版和开发版上无动画效果,可是使用开发者工具真机调试功能在手机上又有动画效果??
请问大佬们这是什么情况
机型:荣耀9X
微信版本:8.0.10
系统版本号:EMUI10.1.0(安卓10)
代码片段:https://developers.weixin.qq.com/s/qnLfcOmz7hsM
//wxss代码
.box{
opacity: 0;
transform: translateY(-20px);
}
//js代码
// 动画
animation(i,delay){
let animation = wx.createAnimation({
duration: 500,
timingFunction: 'ease',
delay: delay
})
animation.translateY(0).opacity(1).step();
var tit="animation["+i+"]"
this.setData({
[tit]:animation.export()
})
console.log('动画',this.data.animation)
},
已解决,参考:https://blog.csdn.net/weixin_42215897/article/details/103683172