HTML canvas strokeRect() 方法
实例
画一个 150*100 像素的矩形:
JavaScript:
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.strokeRect(20, 20, 150, 100);
亲自试一试 »
浏览器支持
表中的数字表示支持该方法的第一个浏览器版本。
方法 | |||||
---|---|---|---|---|---|
strokeRect() | 4.0 | 9.0 | 3.6 | 4.0 | 10.1 |
定义和用法
strokeRect() 方法绘制一个矩形(无填充)。 描边的默认颜色是黑色。
提示: 使用 strokeStyle 属性设置颜色、渐变或图案来设置笔触样式。
JavaScript 语法: | context.strokeRect(x, y, width, height); |
---|
参数值
参数 | 描述 | Play it |
---|---|---|
x | 矩形左上角的x坐标 | Play it » |
y | 矩形左上角的y坐标 | Play it » |
width | 矩形的宽度,以像素为单位 | Play it » |
height | 矩形的高度,以像素为单位 | Play it » |
❮ Canvas 对象