使用Canvas绘制圆圈, 开发环境显示正常, 为什么手机显示不正常?
使用canvas绘制圆圈,填色。在开发环境一直显示正常,但在手机上经常显示不出来。
for (var i = arr + 1; i < arr + dd + 1; i++) {
that.drawCle(that.arry[i], ‘red’);
};
drawCle(opts, color) {
this.ctx.beginPath();
this.ctx.arc(opts.y, opts.x, this.r, 0, Math.PI * 2, true);
this.ctx.setFillStyle(color);
this.ctx.fill();
this.ctx.closePath();
this.ctx.draw(true);
}