stroke-width属性是定义应用于形状的笔触宽度的属性。
用法:
stroke-width="length"
属性值:
- length:我们要设置stroke-width属性的长度
- percentage:我们要设置stroke-width属性的百分比
我们将使用stroke-width属性来设置元素的宽度。
范例1:在此示例中,我们将使用stroke-width属性通过长度值设置rect的宽度。
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 110 80"
xmlns="http://www.w3.org/2000/svg">
<circle cx="15" cy="15" r="3"
stroke="green" stroke-width="11" />
</svg>
</body>
</html>
输出:
范例2:在此示例中,我们将使用stroke-width属性使用百分比值设置rect的宽度。
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 110 80"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20" cy="20" r="6"
stroke="green" stroke-width="20%" />
</svg>
</body>
</html>
输出
相关用法
- Fabric.js Ellipse strokeWidth属性用法及代码示例
- Fabric.js Triangle strokeWidth属性用法及代码示例
- Fabric.js line strokeWidth属性用法及代码示例
- Fabric.js Polygon strokeWidth属性用法及代码示例
- Fabric.js Polyline strokeWidth属性用法及代码示例
- Fabric.js Image strokeWidth属性用法及代码示例
- Fabric.js Group strokeWidth属性用法及代码示例
- SVG viewBox属性用法及代码示例
- SVG rx属性用法及代码示例
- SVG width属性用法及代码示例
- SVG opacity属性用法及代码示例
- SVG stroke属性用法及代码示例
- SVG height属性用法及代码示例
- SVG ry属性用法及代码示例
- SVG fill属性用法及代码示例
- SVG font-size属性用法及代码示例
- SVG stroke-dasharray属性用法及代码示例
- SVG cx属性用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG stroke-width Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。