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(),
})
})
我也遇到这个问题, iphone 7, 11.4.1 动画无效果. 楼主找到解决方案了么
微信的坑,等待吧少年!!!!
谢啦. 看来只能放弃动画了先...
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
wechatide://minicode/JgNHBjmV7HBD
你好,经你的代码测试,问题未复现,请提供出现问题的手机型号以为微信版本
微信6.7.1
iPhone7 11.4.1
iphone x 11.4
微信6.7.1
动画是每次安装小程序时候会丢失,你测试的时候,将下程序卸载,在测试一下,我这边必现!
你说的动画过渡,指的是这个吗?,在你所提供的代码片段只涉及到这个