HTMLキャンバスclearRect()メソッド

❮HTMLキャンバスリファレンス

指定された長方形内の長方形をクリアします。

あなたのブラウザはHTML5canvastagをサポートしていません。

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

ブラウザのサポート

表の数字は、このメソッドを完全にサポートする最初のブラウザバージョンを示しています。

Method
clearRect() Yes 9.0 Yes Yes Yes

定義と使用法

clearRect()メソッドは、指定された長方形内の指定されたピクセルをクリアします。

JavaScript構文: context .clearRect(x、y、width、height);

パラメータ値

Parameter Description Play it
x The x-coordinate of the upper-left corner of the rectangle to clear
y The y-coordinate of the upper-left corner of the rectangle to clear
width The width of the rectangle to clear, in pixels
height The height of the rectangle to clear, in pixels

❮HTMLキャンバスリファレンス