小程序
小游戏
企业微信
微信支付
扫描小程序码分享
动态添加购物车,苹果顺畅,安卓特别卡,有解决办法吗
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
封装成组件+通过wxs操作style
https://developers.weixin.qq.com/miniprogram/dev/framework/view/interactive-animation.html
下面有个代码片段
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
startAnimation: function () {
var index = 0,
that = this,
bezier_points = that.linePos['bezier_points'],
len = bezier_points.length - 1;
this.setData({
hide_good_box: false,
bus_x: that.finger['x'],
bus_y: that.finger['y']
})
this.timer = setInterval(function () {
index++;
that.setData({
bus_x: bezier_points[index]['x'],
bus_y: bezier_points[index]['y']
if (index >= len) {
clearInterval(that.timer);
hide_good_box: true,
}
}, 15);
},
做个代码片段吧
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
封装成组件+通过wxs操作style
https://developers.weixin.qq.com/miniprogram/dev/framework/view/interactive-animation.html
下面有个代码片段
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
startAnimation: function () {
var index = 0,
that = this,
bezier_points = that.linePos['bezier_points'],
len = bezier_points.length - 1;
this.setData({
hide_good_box: false,
bus_x: that.finger['x'],
bus_y: that.finger['y']
})
this.timer = setInterval(function () {
index++;
that.setData({
bus_x: bezier_points[index]['x'],
bus_y: bezier_points[index]['y']
})
if (index >= len) {
clearInterval(that.timer);
that.setData({
hide_good_box: true,
})
}
}, 15);
},
做个代码片段吧