例
清除指定的矩形内的矩形:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(0,0,300,150);
ctx.clearRect(20,20,100,50);
试一试» 浏览器支持
在表中的数字规定,完全支持方法的第一个浏览器版本。
方法 | |||||
---|---|---|---|---|---|
clearRect() | 4 | 9 | 3.6 | 4 | 10.1 |
定义和用法
所述clearRect()方法清除一个给定的矩形内指定的像素。
JavaScript语法: | context 。 clearRect( x,y,width,height ) ; |
---|
参数值
参数 | 描述 | 播放 |
---|---|---|
x | 矩形的左上角的x坐标,以清除 | 播放 ” |
y | 矩形的左上角的y坐标,以清除 | 播放 ” |
width | 矩形的宽度来清除,以像素为单位 | 播放 ” |
height | 矩形的高度来清除,以像素为单位 | 播放 ” |
<画布对象