목록canvas (1)
정미나닷컴
[HTML5] Canvas
var canvas = document.getElementById("mycanvas");//canvas의 DOM 객체를 얻는다.var context = canvas.getContext("2d"); //DOM 객체로부터 2D 컨텍스트를 얻는다. * 사각형fillRect(x,y,width,height) : 색으로 채운 사각형을 그린다.strokeRect(x,y,width,height) : 선만 있는 사각형을 그린다.clearRect(x,y,width,height) : 사각형을 지운다. * N각형beginPath() : canvas에 패스그리기를 알린다.moveTo(x,y) : 패스의 시작점lineTo(x,y) : 패스의 도착점stroke() : 윤곽선을 그린다.fill() : 색을 채운다.closePath(..
IT
2012. 4. 23. 15:25