<feComposite>用于将两个图像相交。它接受两个输入, ” in”和” in2″。默认情况下, in是SourceGraphic。运算符的”输入”属性用于显示合并结果。
例子
<!DOCTYPE html>
<html>
<body>
<svg height="900" width="900">
<filter id="composite" y="0" x="0" width="100%" height="100%">
<feTurbulence baseFrequency=".05" numOctaves="3" result="B"/>
<feComposite in2="B" in="SourceGraphic" operator="in" />
</filter>
<ellipse cx="100" cy="87" rx="75" ry="87" fill="red" filter="url(#composite)"/>
</svg>
</body>
</html>
立即测试
评论前必须登录!
注册