fill-opacity - SVG: Scalable Vector Graphics 编辑
The fill-opacity
attribute is a presentation attribute defining the opacity of the paint server (color, gradient, pattern, etc) applied to a shape.
Note: As a presentation attribute fill-opacity
can be used as a CSS property.
As a presentation attribute, it can be applied to any element but it has effect only on the following eleven elements: <altGlyph>
, <circle>
, <ellipse>
, <path>
, <polygon>
, <polyline>
, <rect>
, <text>
, <textPath>
, <tref>
, and <tspan>
html,body,svg { height:100% }
<svg viewBox="0 0 400 100" xmlns="http://www.w3.org/2000/svg">
<!-- Default fill opacity: 1 -->
<circle cx="50" cy="50" r="40" />
<!-- Fill opacity as a number -->
<circle cx="150" cy="50" r="40"
fill-opacity="0.7" />
<!-- Fill opacity as a percentage -->
<circle cx="250" cy="50" r="40"
fill-opacity="50%" />
<!-- Fill opacity as a CSS property -->
<circle cx="350" cy="50" r="40"
style="fill-opacity: .25;" />
</svg>
Usage notes
Value | [0-1] | <percentage> |
---|---|
Default value | 1 |
Animatable | Yes |
Note: SVG2 introduces percentage values for fill-opacity
, however, it is not widely supported yet (See Browser compatibility below) as a consequence, it is best practices to set opacity with a value in the range [0-1]
.
Browser compatibility
BCD tables only load in the browser
Specifications
Specification | Status | Comment |
---|---|---|
Scalable Vector Graphics (SVG) 2 The definition of 'fill-opacity' in that specification. | Candidate Recommendation | Definition for shapes and texts |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'fill-opacity' in that specification. | Recommendation | Initial definition for shapes and texts |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论