fill-opacity

fill-opacity attribute is a presentation attribute defining the opacity of the paint server ( color , gradient , pattern , etc) applied to a shape.

注意: As a presentation attribute fill-opacity can be used as a CSS property.

You can use this attribute with the following SVG elements:

范例

<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>

					

用法注意事项

[0-1] | <percentage>
默认值 1
Animatable Yes

注意: SVG2 introduces percentage values for fill-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] .

浏览器兼容性

BCD tables only load in the browser

规范

规范 状态 注释
Scalable Vector Graphics (SVG) 2
The definition of 'fill-opacity' in that specification.
候选推荐 Definition for shapes and texts
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'fill-opacity' in that specification.
推荐 Initial definition for shapes and texts

Found a problem with this page?

最后修改: , 由 MDN 贡献者