我的需求是做一个砸金蛋功能,点击金蛋弹出modal ,这个modal是一个砸金蛋的动画。第一次执行这个点击事件触发这个事件没有问题,但是当我关闭这个modal再次打开 这个动画效果不触发了,求解答在这先谢过了,下面附上代码(点击事件触发下面弹框有定义了动画animationData,调用基础库是2.1.1)
<!–砸金蛋modal -->
<view class=“modal-mask” bindtap=“hideModal” catchtouchmove=“preventTouchMove” wx:if="{{showModal}}"></view>
<view class=“modal-dialog” wx:if="{{showModal}}">
<view class=“modal-background”>
<view class=“modal-out” style="">
<view bindtap=“remove”>关闭金蛋模态框</view>
<image bindtap=“eggclick” src="…/…/static/images/egg.png" style=“height:325rpx;width:301rpx;”></image>
<view style=“position:absolute;right:0rpx;top:-180rpx”>
<image class=“modal-chui” animation="{{animationData}}" src="…/…/static/images/chuizi.png" ></image>
</view>
</view>
</view>
</view>
clickeggs: function () {
this.setData({ showModal: true });
let animation1 = wx.createAnimation({
duration: 1000,
transformOrigin: “right bottom”,
timingFunction: ‘ease’
})
setTimeout(function () {
animation1.rotate(-25).step()
animation1.rotate(15).step()
animation1.rotate(-25).step()
animation1.rotate(15).step()
animation1.rotate(-25).step()
animation1.rotate(15).step()
this.setData({
animationData: animation1.export(),
})
}.bind(this), 200);
},