斜率

slope 属性定义了线性滤镜的值,例如亮度。

slope 属性受 <feComponentTransfer> 滤镜基元子元素的支持,包括 feFunc-RGBA 传输函数。当传输函数的 typelinear 时,slope 定义了线性函数的斜率。

当设置 type="linear" 时,您可以将此属性与以下 SVG 组件传输函数元素一起使用。

注意:最初,slope 属性用于 <font-face> 中,以指示字体的垂直笔画角度。此用例已弃用。

使用说明

<number>
默认值 1
可动画
<number>

此值指示线性组件传输函数的斜率。

示例

在本示例中,渐变框具有两个应用了线性滤镜的文本元素。每个滤镜的滤镜传输函数的斜率不同。

html
<svg
  width="8cm"
  height="4cm"
  viewBox="0 0 800 400"
  xmlns="http://www.w3.org/2000/svg"
  version="1.1">
  <title>Examples of feComponentTransfer operations</title>
  <desc>
    Text strings showing the effects of the slope attribute of the
    feComponentTransfer filter function linear options.
  </desc>
  <defs>
    <linearGradient
      id="MyGradient"
      gradientUnits="userSpaceOnUse"
      x1="100"
      y1="0"
      x2="600"
      y2="0">
      <stop offset="0" stop-color="#ff0000" />
      <stop offset="1" stop-color="#0000ff" />
    </linearGradient>
    <filter
      id="Linear1"
      filterUnits="objectBoundingBox"
      x="0%"
      y="0%"
      width="100%"
      height="100%">
      <feComponentTransfer>
        <feFuncR type="linear" slope="1" />
        <feFuncG type="linear" slope="1" />
        <feFuncB type="linear" slope="1" />
      </feComponentTransfer>
    </filter>
    <filter
      id="Linear2"
      filterUnits="objectBoundingBox"
      x="0%"
      y="0%"
      width="100%"
      height="100%">
      <feComponentTransfer>
        <feFuncR type="linear" slope="0.5" />
        <feFuncG type="linear" slope="2.5" />
        <feFuncB type="linear" slope="5" />
      </feComponentTransfer>
    </filter>
  </defs>
  <rect fill="none" stroke="blue" x="1" y="1" width="798" height="398" />
  <g
    font-family="Verdana"
    font-size="100"
    font-weight="bold"
    fill="url(#MyGradient)">
    <text x="100" y="190" filter="url(#Linear1)">Slope1</text>
    <text x="100" y="290" filter="url(#Linear2)">Slope2</text>
  </g>
</svg>

规范

规范
滤镜效果模块级别 1
# element-attrdef-fecomponenttransfer-slope

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。