Chrome支持HTML5画布圈吗?

时间:2014-03-14 23:25:49

标签: javascript html5 google-chrome canvas

我想在画布上画一个圆圈。使用Firefox它看起来像一个圆圈,但使用Chrome它看起来变形。这是我的JavaScript代码:

ctx.fillStyle = "brown";    
ctx.beginPath();
ctx.arc(480,250,100, 0, 2*Math.PI);
ctx.closePath();
ctx.fill();

有谁知道如何修复它?我有最新版本的Chrome。

enter image description here

0 个答案:

没有答案