<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
</head>
<body>
<canvas id = "tcanvas" width = "300" height = "200" style =' border : 1px solid #000 '; > </canvas>
<script>
var canvas = document. getElementById ( "tcanvas" );
var context = canvas. getContext ( "2d" );
context. beginPath (); //빈경로 새롭게 시작
context. strokeStyle = "red" ; //선 색을 red로 지정
//(100,100) 중심 , 반지름 20 , 3시 기준 , 90˚ 각도 , 시계방향
context. arc (100 , 100 , 20 , 0 , Math.PI /2 , false );
context. stroke (); //context의 경로에 있는 도형 그리기
context. beginPath ();
context. strokeStyle = "blue" ;
//(100,100) 중심 , 반지름 40 , 3시 기준 , 180˚ 각도 , 반시계방향
context. arc (100 , 100 , 40 , 0 , Math.PI , true );
context. stroke ();
context. beginPath ();
context. strokeStyle = "black" ;
//(100,100) 중심 , 반지름 60 , 3시 기준 , 180˚ 각도 , 시계방향
context. arc (100 , 100 , 60 , 0 , Math.PI , false );
context. stroke ();
context. beginPath ();
context. strokeStyle = "green" ;
//(100,100) 중심 , 반지름 80 , 3시 기준 , 270˚ 각도 , 반시계방향
context. arc (100 , 100 , 60 , 0 , 1.5 * Math.PI , true );
context. stroke ();
context. beginPath ();
context. strokeStyle = "gray" ;
//(100,100) 중심 , 반지름 95 , 3시 기준 , 270˚ 각도 , 시계방향
context. arc (100 , 100 , 95 , 0 , 1.5 * Math.PI , false );
context. stroke ();
</script>
</body>
</html>
|