有人知道吗
关于animation动画不执行问题我的需求是做一个砸金蛋功能,点击金蛋弹出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); },
2018-07-08重启了一下电脑可以了 ,代理什么我应该没配置过啊
新建项目- 当前 Bug 的表现(可附上截图)[图片] 新建项目出了这个错误翻译了一下是无法建立隧道套接字,原因是连接Enn拒绝,但是还是无法理解哪里出错跪求解答
2018-06-27