SVGFEConvolveMatrixElement: in1 屬性
SVGFEConvolveMatrixElement 介面的只讀屬性 in1 反映了給定 <feConvolveMatrix> 元素的 in 屬性。
值
一個 SVGAnimatedString 物件。
示例
在此示例中,<feConvolveMatrix> 元素將卷積濾鏡應用於 in 屬性指定的輸入圖形。
html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="convolveFilter">
<feConvolveMatrix
in="SourceGraphic"
order="3"
kernelMatrix="0 -1 0 -1 4 -1 0 -1 0" />
</filter>
</defs>
<rect
x="20"
y="20"
width="100"
height="100"
fill="lightblue"
filter="url(#convolveFilter)" />
</svg>
我們可以訪問 <feConvolveMatrix> 元素的 in 屬性。
js
const convolveMatrix = document.querySelector("feConvolveMatrix");
console.log(convolveMatrix.in1.baseVal); // Output: "SourceGraphic"
規範
| 規範 |
|---|
| 濾鏡效果模組第 1 級 # dom-svgfeconvolvematrixelement-in1 |
瀏覽器相容性
載入中…