강좌 & 팁
CanvasRenderingContext2D.clearRect()
설명
CANVAS 에 사각영역을 배경이 보이게 하여 클리어 합니다.
분류
사각형 / □
형태
void CanvasRenderingContext2D.clearRect(in float x, in float y, in float w, in float h);
인수
in float x 사각 영역의 왼쪽 위 가로 좌표
in float y 사각 영역의 왼쪽 위 세로 좌표
in float w 사각 영역의 가로 폭
in float h 사각 영역의 세로 폭
반환
없음
예제
<html>
<head>
<script type="application/javascript">
function draw() {
var canvas = document.getElementById("canvas");
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 100, 100);
ctx.clearRect( 20,20, 80,80 );
}
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
결과