HTML5 canvas clearRect() 方法

实例

矩形:

Your browser does not support the HTML5 canvas tag.

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);

Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 clearRect() 方法。

注释:Internet Explorer 8 <canvas> 元素。

clearRect()

JavaScript 语法:

context.clearRect(x,y,width,height);

参数值

参数 描述
x x 坐标
y y 坐标
width 以像素计
height 以像素计