StrokeRect() | HTML<canvas>方法

定义与用法

strokeRect() 方法绘制矩形(无填充)。笔触的默认颜色是黑色。

提示:请使用 strokeStyle 属性来设置笔触的颜色、渐变或模式。


语法格式

context.strokeRect(x,y,width,height);


示例代码

<script>
    var c = document.getElementById("myCanvas");
    var ctx = c.getContext("2d");
    ctx.strokeRect(20, 20, 150, 100);
</script>

效果展示:

您的浏览器不支持 HTML5 canvas 标签。

亲自试试


浏览器支持

方法
StrokeRect()YesYesYesYesYes

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 strokeRect() 方法。

提示:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。


参数值

参数描述
x矩形左上角的 x 坐标。
y矩形左上角的 y 坐标。
width矩形的宽度,以像素计。
height矩形的高度,以像素计。

相关