<feBlend>
<feColorMatrix>
<feComponentTransfer>
<feComposite>
<feConvolveMatrix>
<feDiffuseLighting>
<feDisplacementMap>
<feDistantLight>
<feFlood>
<feFuncA>
<feFuncB>
<feFuncG>
<feFuncR>
<feGaussianBlur>
<feImage>
<feMerge>
<feMergeNode>
<feMorphology>
<feOffset>
<fePointLight>
<feSpecularLighting>
<feSpotLight>
<feTile>
<feTurbulence>
<filter>
<font>
<font-face>
<font-face-format>
<font-face-name>
<font-face-src>
<font-face-uri>
<foreignObject>
stroke-opacity
attribute is a presentation attribute defining the opacity of the paint server (
color
,
gradient
,
pattern
, etc) applied to the stroke of a shape.
注意:
As a presentation attribute
stroke-opacity
can be used as a CSS property.
You can use this attribute with the following SVG elements:
<altGlyph>
<circle>
<ellipse>
<path>
<line>
<polygon>
<polyline>
<rect>
<text>
<textPath>
<tref>
<tspan>
<svg viewBox="0 0 40 10" xmlns="http://www.w3.org/2000/svg">
<!-- Default stroke opacity: 1 -->
<circle cx="5" cy="5" r="4" stroke="green" />
<!-- Stroke opacity as a number -->
<circle cx="15" cy="5" r="4" stroke="green"
stroke-opacity="0.7" />
<!-- Stroke opacity as a percentage -->
<circle cx="25" cy="5" r="4" stroke="green"
stroke-opacity="50%" />
<!-- Stroke opacity as a CSS property -->
<circle cx="35" cy="5" r="4" stroke="green"
style="stroke-opacity: .3;" />
</svg>
| 值 |
[0-1]
|
<percentage>
|
|---|---|
| 默认值 |
1
|
| Animatable | Yes |
注意:
SVG2 introduces percentage values for
stroke-opacity
, however, it is not widely supported yet (
见
浏览器兼容性
below
) as a consequence, it is best practices to set opacity with a value in the range
[0-1]
.
It's important to know that the stroke partially covers the fill of a shape, so a stroke with an opacity different than
1
will partially show the fill underneath. To avoid this effect, it is possible to apply a global opacity with the
opacity
attribute or to put the stroke behind the fill with the
paint-order
属性。
BCD tables only load in the browser
| 规范 | 状态 | 注释 |
|---|---|---|
|
Scalable Vector Graphics (SVG) 2
The definition of 'stroke-opacity' in that specification. |
候选推荐 | Definition for shapes and texts |
|
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'stroke-opacity' in that specification. |
推荐 | Initial definition for shapes and texts |
最后修改: , 由 MDN 贡献者