let animation =uni.createAnimation({
timingFunction:"linear"
})
onShow(()=>{
let timer = setInterval(()=>{
animation.width("480rpx").height("480rpx").step({duration:1000});
animation.width("360rpx").height("360rpx").step({duration:0});
animationData.value = animation.export();
},1000)
})
求助,这段代码为什么不能实现动画循环?
1 个回复
杨杨得亿 - 这个人很懒,什么都没有留下~
看代码没啥问题,setInterval可以无限执行,但是具体你要实现什么效果请提供完成的demo。