HTML canvas lineWidth 属性

返回上一级

HTML canvas lineWidth 属性设置或返回当前线条的宽度,以像素计

默认值

1

JavaScript 语法

context.lineWidth=number;

属性值

描述
number 当前线条的宽度,以像素计

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 lineWidth 属性

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

范例

用宽度为 10 像素的线条来绘制矩形

你的浏览器不支持 <canvas> 标签
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.lineWidth=10;
ctx.strokeRect(20,20,80,100);

运行范例 »

返回上一级

HTML 全部标签

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.