You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
640 B
16 lines
640 B
10 years ago
|
<svg>
|
||
|
<defs>
|
||
|
<filter id="saturate">
|
||
|
<feColorMatrix in="SourceGraphic" type="saturate" values=".25" result="A"/>
|
||
|
</filter>
|
||
|
<image x="0" y="0" width="100%" height="100%" xlink:href="<%= image %>" id="banner-image" preserveAspectRatio="xMidYMid slice" filter="url(#saturate)" />
|
||
|
|
||
|
<filter id="banner-img" x="0" y="0" width="1" height="1">
|
||
|
<feImage xlink:href="#banner-image" result="banner-image"/>
|
||
|
<feBlend mode="multiply" in="banner-image" in2="SourceGraphic" in="banner-image" />
|
||
|
</filter>
|
||
|
</defs>
|
||
|
|
||
|
<rect x="0" y="0" width="100%" height="100%" filter="url(#banner-img)"/>
|
||
|
</svg>
|