收藏
回答

关于官方文档Animation Api 在onShow中使用失效的问题

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug Animation 客户端 7.0.4 2.7.0

- 当前 Bug 的表现(可附上截图)


- 预期表现

如上图

- 复现路径

如上图

- 提供一个最简复现 Demo

Page({

data: {

},

onShow: function () {

console.log('onShow')


//did not work

// this.testAnimation()

},

onReady: function () {

console.log('onReady')


//worked

this.testAnimation()

},

testAnimation:function(){

const animation = wx.createAnimation({

duration: 2000,

timingFunction: 'ease',

delay: 0,

})


animation

.scale(4, 4)

.step()

.scale(2, 2)

.step({ duration: 200 })

.scale(4, 4)

.step({ duration: 200 })



this.setData({

animationData: animation.export()

})

}

})


回答关注问题邀请回答
收藏

1 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2019-05-14

    你好,请具体说明下问题表现,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2019-05-14
    有用
    回复 3
    • 2019-05-14

      机型:小米2s、微信版本号见上述表单、系统安卓9.0、代码片段见上述问题描述

      2019-05-14
      回复
    • 疯狂的小辣椒
      疯狂的小辣椒
      2019-05-14回复

      麻烦看下我提供的链接,那是对于代码片段的介绍,然后再按照指引补充下代码片段

      2019-05-14
      回复
    • 2019-05-14回复疯狂的小辣椒

      https://developers.weixin.qq.com/s/29pTRmm77j89

      2019-05-14
      回复
登录 后发表内容