有结果了么?
关于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-09补充一下,客户的ios版本是11.4
小程序对ios版本和微信版本有特殊要求么?老板去谈客户,客户使用的ipX,扫描小程序码进入小程序,发现数据都读不进来,技术人员真机测试和开发工具测试都没有问题,所以我怀疑可能是微信版本或者iOS版本影响了小程序的运行,有大佬给普及一下这方面的知识么!万分感谢! 上方的微信版本号是随便填的,,请勿当真
2018-06-19