HTML5 キャンバスを使用して円形パターン ジェネレーターを作成しました。円弧を使用して円を作成し、キャンバス上にランダムに配置しました。また、マウスダウン時に生成されたランダムな色で円を塗りつぶしました。アーク フィルは Firefox では機能しますが、Chromeでは表示されません。最新の Chrome バージョン 18 を使用しています。
context.save();
context.scale(1, 1);
context.beginPath();
context.arc(nextX, nextY, radius, 0, 2 * Math.PI, false);
context.closePath();
context.fillStyle = color;
context.lineWidth = 1;
context.strokeStyle = color;
context.stroke();
context.fill();
context.restore();
これがライブワーキングリンクです - http://www.riaxe.com/html5cirpattern/