例
清除指定的矩形內的矩形:
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 | 矩形的高度來清除,以像素為單位 | 播放 ” |
<畫布對象