HTML5는 원을 그립니다
http://ajax.googleapis.com/ajax/libs/jquery/1.7.1 /jquery .min.js">>
<script><br>$(document).ready(function(){<br>var c=document.getElementById("drawbox");<br>var draw=c.getContext("2d"); //2D 콘텐츠에 대한 참조를 가져오고 드로잉 API를 호출합니다</p>
<p>draw.fillStyle="red"; //색상<br>draw.beginPath(); //다시 그리기<br>draw.arc(50,50,50,0,Math.PI*2,true ); //중심 x 좌표|중심 y 좌표|직경|시작|PI는 pi, Math.PI*2는 원을 그리는 것입니다.|true는 시계 방향입니다: 시계 반대 방향, 0은 시계 방향, <br>draw.closePath() ; //끝<br>draw.fill();<br>})<br></script>