r - SVG 编辑

r 属性用来定义圆的半径。

有两个元素在使用该属性:<circle><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>r 用来定义圆的半径以及它的大小。取值小于或等于零,圆将不会被绘制出来。

<length> | <percentage>
默认值0
可变性Yes

注:起始于 SVG2,r 是一个几何属性,意味着该属性也可以用作圆的 CSS 属性。

径向渐变

对于 <radialGradient>r 用来定义径向渐变终止圆的半径。

渐变将以此绘制出来:100% 渐变停止点会被映射到终止圆的一周上。取值小于或等于零,将会使用最后一个渐变 <stop> 的颜色和不透明度,导致该区域被绘制为单色。

<length> | <percentage>
默认值50%
可变性Yes

技术规范

技术规范状态注释
Scalable Vector Graphics (SVG) 2
r
Candidate RecommendationDefinition as a geometry property
Scalable Vector Graphics (SVG) 2
r
Candidate RecommendationDefinition for SVG2 paint servers <radialGradient>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
r
RecommendationInitial definition for <radialGradient>
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
r
RecommendationInitial definition for <circle>

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

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

发布评论

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

词条统计

浏览:98 次

字数:6073

最后编辑:7年前

编辑次数:0 次

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