使用Canvas绘制圆圈, 开发环境显示正常, 为什么手机显示不正常?
发布于 8 年前 作者 shenjuan 5873 次浏览 来自 官方Issues

使用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);

    }

1 回复

怎么个不正常法?是都没有画出来还是咋的?有截图?

回到顶部