关于小程序的动画 animation

关于小程序的动画 animation

请问一下 什么创建一个动画的时候 会有 transform 为none
就是这个才导致了我的弹层倾斜

以下是我的代码【wepy】:

  show ({ message, duration }) {

this.toastMessage = message;

this.toastVisible = true;

let animation = wx.createAnimation({

duration: 400,

delay: 0,

timingFunction: 'linear',

});

animation.opacity(1).step();

this.animationData = animation.export();

this.$apply();

// this.toast(duration);

}

以上是 关于小程序的动画 animation 的全部内容, 来源链接: utcz.com/a/160184.html

回到顶部