kernelMatrix

**kernelMatrix** 属性定义构成 <feConvolveMatrix> 元素的核矩阵的数字列表。

值用空格和/或逗号分隔。列表中的条目数必须等于 <orderX> 乘以 <orderY>,如 order 属性中定义的那样。

您可以将此属性与以下 SVG 元素一起使用

示例

html
<svg viewBox="0 0 420 200" xmlns="http://www.w3.org/2000/svg">
  <filter id="convolveMatrix1" x="0" y="0" width="100%" height="100%">
    <feConvolveMatrix kernelMatrix="1 1 0 0 0 0 0 0 -1" />
  </filter>
  <filter id="convolveMatrix2" x="0" y="0" width="100%" height="100%">
    <feConvolveMatrix kernelMatrix="-1 0 0 0 0 0 0 0 1" />
  </filter>

  <image
    href="mdn_logo_only_color.png"
    width="200"
    height="200"
    style="filter:url(#convolveMatrix1);" />
  <image
    href="mdn_logo_only_color.png"
    width="200"
    height="200"
    style="filter:url(#convolveMatrix2); transform:translateX(220px);" />
</svg>

使用说明

<数字列表>
默认值
可动画
<数字列表>

构成卷积核矩阵的 <number> 列表。值用空格和/或逗号分隔。列表中的条目数必须等于 <orderX> 乘以 <orderY>

如果 orderX * orderY 的结果不等于值列表中的条目数,则滤镜原语充当直通滤镜。

规范

规范
滤镜效果模块级别 1
# element-attrdef-feconvolvematrix-kernelmatrix

浏览器兼容性

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