radialGradient - SVG 编辑

radialGradient 用来定义径向渐变,以对图形元素进行填充或描边。

用法

类别渐变元素
允许的内容物任意数量、任意排序的下列元素:
描述性元素
<animate>, <animateTransform>, <set>, <stop>

属性

全局属性

专有属性

DOM 接口

该元素实现了 SVGRadialGradientElement 接口。

示例

SVG

<svg width="120" height="120" viewBox="0 0 240 120"
   xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="exampleGradient">
      <stop offset="10%" stop-color="gold"/>
      <stop offset="95%" stop-color="green"/>
    </radialGradient>
    <radialGradient spreadMethod="reflect"
                    cx="50%"
                    cy="50%"
                    r="50%"
                    fx="25%"
                    fy="75%"
                    fr="10%"
                   id="flameGradient">
      <stop offset="0%" stop-color="white"/>
      <stop offset="10%" stop-color="yellow"/>
      <stop offset="95%" stop-color="red"/>
    </radialGradient>
  </defs>
  <circle fill="url(#exampleGradient)" cx="60" cy="60" r="50"/>
  <circle fill="url(#flameGradient)" cx="180" cy="60" r="50"/>
</svg>

结果

技术参数

技术参数状态注释
Scalable Vector Graphics (SVG) 2
<radialGradient>
Candidate Recommendation加入 fr 属性
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
<radialGradient>
Recommendation初始定义

浏览器兼容性

BCD tables only load in the browser

本页面上的兼容性表格是由结构化数据生成的。如果你想要为此数据做贡献,请移步至 https://github.com/mdn/browser-compat-data 并给我们发送 pull request。

相关内容

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

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

发布评论

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

词条统计

浏览:69 次

字数:5953

最后编辑:8年前

编辑次数:0 次

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