fillRect()方法用于使用给定的颜色填充矩形。 fillRect()方法的默认颜色是黑色。
用法:
context.fillRect( x, y, width, height )
参数:该方法接受上述和以下所述的四个参数:
- x:它存储矩形左上角的x坐标。
- y:它存储矩形左上角的y坐标。
- width:它以像素为单位存储宽度。
- height:它以像素为单位存储高度。
范例1:本示例使用fillRect()方法创建矩形并用默认颜色(黑色)填充。
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas fillRect() Method
</title>
</head>
<body>
<canvas id="GFG" width="500" height="300"></canvas>
<script>
var x = document.getElementById("GFG");
var contex = x.getContext("2d");
contex.fillRect(50, 50, 350, 200);
contex.stroke();
</script>
</body>
</html>
输出:
范例2:本示例使用fillRect()方法创建矩形并用ve颜色(绿色)填充。
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas fillRect() Method
</title>
</head>
<body>
<canvas id="GFG" width="500" height="300"></canvas>
<script>
var x = document.getElementById("GFG");
var contex = x.getContext("2d");
contex.fillStyle = "green";
contex.fillRect(50, 50, 350, 200);
contex.stroke();
</script>
</body>
</html>
输出:
支持的浏览器:下面列出了fillRect()方法支持的浏览器:
- 谷歌浏览器
- Internet Explorer 9.0
- 火狐浏览器
- 苹果浏览器
- Opera
相关用法
- HTML canvas arc()用法及代码示例
- HTML canvas fillText()用法及代码示例
- HTML canvas fill()用法及代码示例
- HTML canvas strokeRect()用法及代码示例
- HTML canvas measureText()用法及代码示例
- HTML canvas createPattern()用法及代码示例
- HTML canvas beginPath()用法及代码示例
- HTML canvas createImageData()用法及代码示例
- HTML canvas stroke()用法及代码示例
- HTML canvas rect()用法及代码示例
- HTML canvas lineTo()用法及代码示例
- HTML canvas clearRect()用法及代码示例
- HTML canvas closePath()用法及代码示例
- HTML canvas scale()用法及代码示例
- HTML canvas arcTo()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 HTML | canvas fillRect() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。