여기서 여러분과 공유할 내용은 제가 캔버스를 배울 때 했던 속이 빈 원과 단단한 원 그리기 연습입니다. 매우 간단합니다.
var canvas=document.getElementById("canvas");
var cxt= canvas.getContext("2d");
//빈 원 그리기
cxt.beginPath();
cxt.arc(200,200,50,0,360,false);
cxt .lineWidth= 5;
cxt.StrokeStyle="green";
cxt.Stroke();//빈 원 그리기
cxt.closePath();
//실선 원 그리기
cxt.beginPath();
cxt.arc(200,100,50,0,360,false);
cxt.fillStyle="red";//채우기 색상, 기본값은 검정색입니다
cxt.fill ();// 속이 빈 원 그리기
cxt.closePath();
//속이 빈 것과 속이 빈 것의 조합
cxt.beginPath();
cxt.arc(300,300,50,0,360, false);
cxt.fillStyle="red";
cxt.fill();
cxt.StrokeStyle="green";
cxt.Stroke();
cxt.closePath( );