fillRect() 是Canvas 2D API 绘制填充矩形的方法。矩形的起点在 (x, y) 位置,矩形的尺寸是 width 和 height ,fillStyle 属性决定矩形的样式。
绘制 100*100 像素的已填充正方形:
<!DOCTYPE html> <html> <head> <title>HTML canvas fillRect() 方法的使用(编程教程网(123520.net))</title> </head> <body> <canvas id="myCanvas" width="200" height="150" style="border:1px solid #d3d3d3;"> 您的浏览器不支持 HTML5 canvas 标签。 </canvas> <script> var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); ctx.fillRect(20,20,100,100); </script> </body> </html>测试看看 ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 fillRect() 方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
fillRect() 方法绘制一个“填充”矩形。填充的默认颜色是黑色。
提示:请使用 fillStyle 属性来设置用于填充绘图的颜色、渐变或模式。
JavaScript 语法: | context.fillRect(x,y,width,height); |
---|
参数 | 描述 |
---|---|
x | 矩形左上角的 x 坐标。 |
y | 矩形左上角的 y 坐标。 |
width | 矩形的宽度,以像素计。 |
height | 矩形的高度,以像素计。 |