Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

stroke

« SVG属性参考主页

stroke属性定义了给定图形元素的外轮廓的颜色。它的默认值是none

用法

类别 外观属性
<paint>
可变性
规范文档 SVG 1.1 (2nd Edition)

示例

SVG 描边的线

示例1:用stroke属性画一条绿色的直线.

<svg height="50" width ="300">
    <path stroke = "green" d="M5 20 1215 0" />
</svg>

 

示例2:用Stroke属性画一个拥有蓝色边框的黑色的圆形

​​<svg height="200" width="200">
    <circle cx="50" cy="50" r="40" stroke="blue" stroke-width="2" fill ="black" />
</svg>

 

元素

下列元素可以使用stroke属性:

文档标签和贡献者

 此页面的贡献者: fanxiaojie, slientomorrr
 最后编辑者: fanxiaojie,