小程序
小游戏
企业微信
微信支付
扫描小程序码分享
通过点击按钮进行绘制圆环,第一次点击可以生成,第二次以后点击就不能生成
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
一点都不自觉!代码要贴出来噻。。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
creatNormalProgressCanvas: function() {
let Width = wx.getSystemInfoSync().windowWidth
let arcround = 60 * (Width / 750)
cxt_circle.setLineWidth(2);
cxt_circle.setStrokeStyle('#e5e5e5');
cxt_circle.setLineCap('round')
cxt_circle.beginPath(); //开始一个新的路径
cxt_circle.arc(arcround, arcround, arcround - 2, 0, 2 * Math.PI, false); //设置一个原点(106,106),半径为100的圆的路径到当前路径
cxt_circle.stroke(); //对当前路径进行描边
cxt_circle.restore()
cxt_circle.draw();
},
click: function () {
this.creatNormalProgressCanvas()
}
wechatide://minicode/QczU2fm27W2N
我试了下,对的哦。。你可能用的有哪里不对吧。。方便做个代码片段吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
一点都不自觉!代码要贴出来噻。。
creatNormalProgressCanvas: function() {
let Width = wx.getSystemInfoSync().windowWidth
let arcround = 60 * (Width / 750)
cxt_circle.setLineWidth(2);
cxt_circle.setStrokeStyle('#e5e5e5');
cxt_circle.setLineCap('round')
cxt_circle.beginPath(); //开始一个新的路径
cxt_circle.arc(arcround, arcround, arcround - 2, 0, 2 * Math.PI, false); //设置一个原点(106,106),半径为100的圆的路径到当前路径
cxt_circle.stroke(); //对当前路径进行描边
cxt_circle.restore()
cxt_circle.draw();
},
click: function () {
this.creatNormalProgressCanvas()
}
wechatide://minicode/QczU2fm27W2N
我试了下,对的哦。。你可能用的有哪里不对吧。。方便做个代码片段吗