rotate就是这个旋转角度,我每次旋转都想让他继续旋转-360°,这个有什么方法能做到吗
animation 旋转动画只生效一次吗?想实现的效果是每次点击都逆时针旋转360°,过程是缩小0.5倍,最后还原成1倍的 <view animation="{{animationData}}" style="background:red;height:100rpx;width:100rpx;margin: 100rpx 0 0 20rpx;">22222</view> <view style="margin-top: 200rpx;" bindtap="click">点击我</view> Page({ data: { animationData: {} }, click(){ var animation = wx.createAnimation({ duration: 1000, timingFunction: 'ease', }) this.animation = animation animation.scale(0.5,0.5).rotate(-360).step() this.setData({ animationData:animation.export() }) setTimeout(function() { animation.scale(1,1).rotate(-360).step() this.setData({ animationData:animation.export() }) }.bind(this), 1000) } })
2022-01-26怎么解决的呀,好兄弟,我又重新按照文档来了一遍还是一样,返回时多一层地图。大神,求指点迷津
小程序调用腾讯地图,按左上角的返回键,出现多了一层,该怎么解决?[图片] [图片]
2021-02-01您好,您是怎么解决的呢?真心求教 微信:zcl13938320795
小程序腾讯地图点击返回多出一层?小程序腾讯地图点击返回多出一层?真机调试也出现了。 [图片] [图片]点击返回留白?
2021-01-29