r - SVG: Scalable Vector Graphics 编辑

The r attribute defines the radius of a circle.

Two elements are using this attribute: <circle>, and <radialGradient>

html,body,svg { height:100% }
<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>

circle

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.

Value<length> | <percentage>
Default value0
AnimatableYes

Note: Starting with SVG2, r is a Geometry Property meaning this attribute can also be used as a CSS property for circles.

radialGradient

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

Value<length> | <percentage>
Default value50%
AnimatableYes

Specifications

SpecificationStatusComment
Scalable Vector Graphics (SVG) 2
The definition of 'r' in that specification.
Candidate RecommendationDefinition as a geometry property
Scalable Vector Graphics (SVG) 2
The definition of 'r' in that specification.
Candidate RecommendationDefinition for SVG2 paint servers <radialGradient>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'r' in that specification.
RecommendationInitial definition for <radialGradient>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'r' in that specification.
RecommendationInitial definition for <circle>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:74 次

字数:5846

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文