HTML 画布 clearRect() 方法


HTML 画布中的 clearRect() 方法用于清除给定矩形中的像素。<canvas> 元素允许您使用 JavaScript 在网页上绘制图形。每个画布都有两个描述画布高度和宽度的元素,即高度和宽度。

下面是语法 −

ctx.clearRect(p,q,width,height);

上面,

  • p:要清除的矩形左上角的 x 坐标
  • q:要清除的矩形左上角的 y 坐标
  • width:要清除的矩形的宽度
  • height:要清除的矩形的高度

现在,我们来看一个使用 canvas 的 clearRect() 方法的示例−

示例

 在线演示

<!DOCTYPE html>
<html>
<body>
<canvas id="newCanvas" width="500" height="350" style="border:2px solid blue;">
</canvas>
<script>
var c = document.getElementById("newCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = "gray";
ctx.fillRect(0, 0, 500, 350);
ctx.clearRect(250, 100, 50, 100);
</script>
</body>
</html>

输出

更新于: 2020 年 6 月 12 日

1K+ 浏览量

开启你的 职业 生涯

通过完成课程获得认证

开始学习
广告