微信小程序iOS端动画过渡属性失效,ps:android 和模拟器都正常
html部分 <view animation="{{animationY}}" style="position:fixed;left:150px;"> <image class="am-love" animation="{{animationX}}" style="position:fixed;top:139px;" src="一张图片">image> view> js 部分 Page({
data:{
animationY:{},
animationX:{},
},
onShow:function(){
var animation = wx.createAnimation({
duration: 3000,
timingFunction: 'ease-in',
delay:1000,
})
this.animation = animation
animation.translate3d(150,220,220).width(30).height(30).step()
this.setData({
animationX:animation.export(),
})
})