我根据官方文档创建了一个简单的动画效果,但是运行到微信小程序工具发现无动画效果,下面是代码:
<view style="width:100%;height: 100upx;" @click="show">
<view class="anima" :animation="animationData" >ok</view>
</view>
onUnload() {
this.animationData={};
},
onLoad() {
this.animation = uni.createAnimation();
},
methods:{
show: function(){
this.animation.translateY(60).opacity(0).step()
this.animationData = this.animation.export()
console.log("show");
}
},
2 个回复
1***@qq.com
同,我的背景图在浏览器可移动,移动端就动不了
1***@qq.com
想请教:为什么我的动画第一次的时候没有动画效果。再一次就有了,是什么原因呢?