小程序
小游戏
企业微信
微信支付
扫描小程序码分享
animation.translateY(-300).scale(3,3).step() animation.translateY(-500).step()
在开发者工具是可以的,但在真机ios没有了过渡动画,官方是不打算处理这个问题吗,这个问题我在其他帖子也看到过,但是没看到有处理结果
https://developers.weixin.qq.com/community/develop/doc/0006e8189fcfe87af75a6877d5bc00
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
亲测可行。除了第一个,把剩下的 step 放在 setTimeout 中。
// 使用多个 step,在 IOS 上只执行第一个 // 所以这里使用 setTimeout 解决该问题 this.animation.scale(2, 2).step() // this.animation.scale(1, 1).step() this.setData({ animationData: this.animation.export() }) setTimeout(() => { this.animation.scale(1, 1).step() this.setData({ animationData: this.animation.export() }) }, 300) // 这里的延时等于第一个 step 的动画时长
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
亲测可行。除了第一个,把剩下的 step 放在 setTimeout 中。
// 使用多个 step,在 IOS 上只执行第一个 // 所以这里使用 setTimeout 解决该问题 this.animation.scale(2, 2).step() // this.animation.scale(1, 1).step() this.setData({ animationData: this.animation.export() }) setTimeout(() => { this.animation.scale(1, 1).step() this.setData({ animationData: this.animation.export() }) }, 300) // 这里的延时等于第一个 step 的动画时长