收藏
回答

真机动画 translateY 无效果?

这是将数组的数据一个一个渲染出来的动画,在开发者工具上运行的效果非常好

但是在用小程序体验版开发版无动画效果,可是使用开发者工具真机调试功能在手机上又有动画效果??

请问大佬们这是什么情况

机型:荣耀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)
  },
最后一次编辑于  2021-08-25
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容