stroke

**stroke** 属性是一个表示属性,用于定义用于绘制形状轮廓的颜色(*或任何 SVG 绘制服务器,如渐变或图案*)。

注意:作为表示属性,stroke 可以用作 CSS 属性。有关更多信息,请参阅 stroke

您可以将此属性与以下 SVG 元素一起使用

示例

基本颜色和渐变描边

html
<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg">
  <!-- Simple color stroke -->
  <circle cx="5" cy="5" r="4" fill="none" stroke="green" />

  <!-- Stroke a circle with a gradient -->
  <defs>
    <linearGradient id="myGradient">
      <stop offset="0%" stop-color="green" />
      <stop offset="100%" stop-color="white" />
    </linearGradient>
  </defs>

  <circle cx="15" cy="5" r="4" fill="none" stroke="url(#myGradient)" />
</svg>

输出如下

context-stroke 示例

在此示例中,我们使用 <path> 元素定义了三个形状,每个形状都有不同的 strokefill 颜色。我们还通过 <marker> 元素定义了一个 <circle> 元素作为标记。每个形状都通过 marker CSS 属性应用了标记。

<circle> 设置了 stroke="context-stroke"fill="context-fill"。因为它在形状的上下文中被设置为标记,所以这些属性会导致它继承在每种情况下 <path> 元素上设置的 fillstroke

html
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 90">
  <style>
    path {
      stroke-width: 2px;
      marker: url(#circle);
    }
  </style>
  <path d="M 10 44.64 L 30 10 L 70 10 L 90 44.64 L 70 79.28 L 30 79.28 Z"
        stroke="red" fill="orange" />
  <path d="M 100 44.64 L 80 10 L 120 10 L 140 44.64 L 120 79.28 L 80 79.28 Z"
        stroke="green" fill="lightgreen" />
  <path d="M 150 44.64 L 130 10 L 170 10 L 190 44.64 L 170 79.28 L 130 79.28 Z"
        stroke="blue" fill="lightblue" />
  <marker id="circle" markerWidth="12" markerHeight="12"
          refX="6" refY="6" markerUnits="userSpaceOnUse">
    <circle cx="6" cy="6" r="3" stroke-width="2"
            stroke="context-stroke" fill="context-fill"  />
  </marker>
</svg>

输出如下

注意:当元素被 <use> 元素引用时,它们也可以使用 context-strokecontext-fill 来继承 strokefill 值。

使用说明

<paint>
默认值 none
可动画

规范

规范
可缩放矢量图形 (SVG) 2
# SpecifyingStrokePaint

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。