有更好的动画实现方法吗?现有方法有两个缺点,大家遇到过吗?
动画调试中发现两个问题 :
1, 想做个动画,比如缩放再回到原始大小。需要两步完成。;(
2,分成两步,实际操作中发现,会发生堵塞,动画缩小后回不来了(频繁点击时发生)
代码如下:(哪个大佬帮忙一下呢)
var tempPOAnimation = wx.createAnimation({
duration: 200,
timingFunction:“ease”,
})
this.data.animationPOChangeOver = tempPOAnimation
tempPOAnimation.scale3d(0.01,0.01,0.01).step()
tempPOAnimation.scale3d(1,1,1).step()
this.setData({
animationPOChangeover: tempPOAnimation.export(),
})