lineWidth
实例
用宽度为 10 像素的线条来绘制矩形:
JavaScript:
var c=document.getelementbyid("myCanvas"); var ctx=c.getcontext("2d"); ctx.linewidth=10; ctx.strokerect(20,20,80,100);
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 lineWidth 属性。 | ||||
注意:Internet Explorer 8 及之前的版本不支持<canvas>元素。 |
定义和用法
lineWidth 属性设置或返回当前线条的宽度,以像素计。
默认值: | 1 |
---|---|
JavaScript 语法: | context.lineWidth=number; |
属性值
值 | 描述 |
---|---|
number | 当前线条的宽度,以像素计。 |