html5タグで図形を描く

<!doctype html>
<html>
<head>
<script type="text/javascript">
function init(){
var ctx=document.getElementById('c’).getContext('2d’);
//ctx.beginPath()とctx.closePath()
ctx.beginPath();

ctx.strokeStyle="rgb(200,0,0)";

ctx.arc(200,200,50,0,Math.PI,true);
ctx.arc(200,200,50,0,Math.PI,false);

//ctx.arc(200,200,50,0,2*Math.PI,true);
//ctx.arc(200,200,50,0,2*Math.PI,false);
ctx.arc(200,200,50,.5*Math.PI,2.5*Math.PI,false);

ctx.fillStyle="rgb(200,0,0)";
ctx.closePath();

ctx.fill();
ctx.strokeStyle="rgb(255,0,0)";
ctx.lineWidth=5;
ctx.stroke();
}
</script>
</head>
<body>
<body onload=’init();’>
<canvas id="c" width="400″ height="300″>
あなたのブラウザはhtml5要素をサポートしていません.
</canvas>
</body>
</html>

Windows10

Posted by arkgame