--- title: linearGradient slug: Web/SVG/Element/linearGradient tags: - SVG - SVG渐变 - 元素 translation_of: Web/SVG/Element/linearGradient ---
{{SVGRef}}

linearGradient元素用来定义线性渐变,用于图形元素的填充或描边。

用法

{{svginfo}}

示例

<svg width="120" height="120"  viewBox="0 0 120 120"
     xmlns="http://www.w3.org/2000/svg" version="1.1"
     xmlns:xlink="http://www.w3.org/1999/xlink" >

    <defs>
        <linearGradient id="MyGradient">
            <stop offset="5%"  stop-color="green"/>
            <stop offset="95%" stop-color="gold"/>
        </linearGradient>
    </defs>

    <rect fill="url(#MyGradient)"
          x="10" y="10" width="100" height="100"/>
</svg>

{{EmbedLiveSample("Example", 120, 120, "https://mdn.mozillademos.org/files/10061/svg-lineargradient.png")}}

属性

Global 属性

专有属性

DOM 接口

该元素实现了SVGLinearGradientElement接口。

浏览器兼容性

{{CompatibilityTable}}

Feature Chrome Firefox (Gecko) IE Opera Safari
Basic support 1.0 {{ CompatGeckoDesktop('1.8') }} {{ CompatIE('9.0') }} {{ CompatOpera('9.0') }} {{ CompatSafari('3.0.4') }}
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support {{ CompatAndroid('3.0') }} {{ CompatGeckoMobile('1.8') }} {{CompatNo}} {{ CompatVersionUnknown}} {{ CompatSafari('3.0.4') }}

该表格基于这些资源

 

[1] WebKit不支持spread方法 (bug 5968) 以及颜色插值 (bug 6034)。

参见