SVGFEDisplacementMapElement: in2 属性
SVGFEDisplacementMapElement
接口的只读属性 in2
反映了给定 <feDisplacementMap>
元素的 in2
属性。
值
一个 SVGAnimatedString
对象。
示例
在此示例中,filter 中定义了两个 <feDisplacementMap>
元素,每个元素都有一个不同的 in2
属性。
html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter1">
<!-- First Displacement Map -->
<feDisplacementMap in="SourceGraphic" in2="BackgroundImage" scale="20">
<feFuncR type="table" tableValues="0 1" />
</feDisplacementMap>
<!-- Second Displacement Map -->
<feDisplacementMap in="SourceGraphic" in2="BackgroundImage" scale="30">
<feFuncR type="table" tableValues="0.5 1" />
</feDisplacementMap>
</filter>
</defs>
<rect
x="20"
y="20"
width="100"
height="100"
fill="red"
filter="url(#filter1)" />
<circle cx="100" cy="100" r="50" fill="blue" filter="url(#filter1)" />
</svg>
我们可以访问 in2
属性
js
const displacementMaps = document.querySelectorAll("feDisplacementMap");
console.log(displacementMaps[0].getAttribute("in2")); // Output: "BackgroundImage"
console.log(displacementMaps[1].getAttribute("in2")); // Output: "BackgroundImage"
规范
规范 |
---|
滤镜效果模块第 1 级 # dom-svgfedisplacementmapelement-in2 |
浏览器兼容性
加载中…