strokeRect() 是 Canvas 2D API 在 canvas 中,使用当前的绘画样式,描绘一个起点在 (x, y) 、宽度为 w 、高度为 h 的矩形的方法。 此方法直接绘制到画布而不修改当前路径,因此任何后续fill() 或stroke()调用对它没有影响。
绘制 100*100 像素的正方形:
<!DOCTYPE html> <html> <head> <title>HTML canvas strokeRect() 方法的使用(编程教程网(123520.net))</title> </head> <body> <canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;"> 您的浏览器不支持 HTML5 canvas 标签。 </canvas> <script> var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); ctx.strokeRect(20,20,100,100); </script> </body> </html>测试看看 ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 strokeRect() 方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
strokeRect() 方法绘制一个矩形(不填充)。笔划的默认颜色是黑色。
提示:请使用 strokeStyle 属性来设置笔触的颜色、渐变或模式。
JavaScript 语法: | context.strokeRect(x,y,width,height); |
---|
参数 | 描述 |
---|---|
x | 矩形左上角的 x 坐标。 |
y | 矩形左上角的 y 坐标。 |
width | 矩形的宽度,以像素计。 |
height | 矩形的高度,以像素计。 |