<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>
r
attribute defines the radius of a circle.
You can use this attribute with the following SVG elements:
<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg">
<radialGradient r="0" id="myGradient000">
<stop offset="0" stop-color="white" />
<stop offset="100%" stop-color="black" />
</radialGradient>
<radialGradient r="50%" id="myGradient050">
<stop offset="0" stop-color="white" />
<stop offset="100%" stop-color="black" />
</radialGradient>
<radialGradient r="100%" id="myGradient100">
<stop offset="0" stop-color="white" />
<stop offset="100%" stop-color="black" />
</radialGradient>
<circle cx="50" cy="50" r="0"/>
<circle cx="150" cy="50" r="25"/>
<circle cx="250" cy="50" r="50"/>
<rect x="20" y="120" width="60" height="60" fill="url(#myGradient000)" />
<rect x="120" y="120" width="60" height="60" fill="url(#myGradient050)" />
<rect x="220" y="120" width="60" height="60" fill="url(#myGradient100)" />
</svg>
For
<circle>
,
r
defines the radius of the circle and therefor its size. With a value lower or equal to zero the circle won't be drawn at all.
| 值 | <length> | <percentage> |
|---|---|
| 默认值 |
0
|
| Animatable | Yes |
注意:
Starting with SVG2,
r
是
Geometry Property
meaning this attribute can also be used as a CSS property for circles.
For
<radialGradient>
,
r
defines the radius of the end circle for the radial gradient.
The gradient will be drawn such that the
100%
gradient stop is mapped to the perimeter of this end circle. A value of lower or equal to zero will cause the area to be painted as a single color using the color and opacity of the last gradient
<stop>
.
| 值 | <length> | <percentage> |
|---|---|
| 默认值 |
50%
|
| Animatable | Yes |
| 规范 | 状态 | 注释 |
|---|---|---|
|
Scalable Vector Graphics (SVG) 2
The definition of 'r' in that specification. |
候选推荐 | Definition as a geometry property |
|
Scalable Vector Graphics (SVG) 2
The definition of 'r' in that specification. |
候选推荐 |
Definition for SVG2 paint servers
<radialGradient>
|
|
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'r' in that specification. |
推荐 |
Initial definition for
<radialGradient>
|
|
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'r' in that specification. |
推荐 |
Initial definition for
<circle>
|
最后修改: , 由 MDN 贡献者