--- title: feBlend slug: Web/SVG/Element/feBlend tags: - SVG - SVG滤镜 - 元素 - 需要兼容性表 translation_of: Web/SVG/Element/feBlend ---
feBlend
滤镜把两个对象组合在一起,使它们受特定的混合模式控制。这类似于图像编辑软件中混合两个图层。该模式由属性{{ SVGAttr("mode") }}定义。
{{svginfo}}
该元素实现了SVGFEBlendElement
接口。
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="spotlight">
<feFlood result="floodFill" x="0" y="0" width="100%" height="100%"
flood-color="green" flood-opacity="1"/>
<feBlend in="SourceGraphic" in2="floodFill" mode="multiply"/>
</filter>
</defs>
<image xlink:href="/files/6457/mdn_logo_only_color.png"
x="10%" y="10%" width="80%" height="80%"
style="filter:url(#spotlight);"/>
</svg>
{{EmbedLiveSample("Example", 200, 200)}}