blob: caa96e4bad44a5dfb495913169631ef903bf223b (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="offset" x="0" y="0" width="200%" height="200%">
<feOffset in="SourceGraphic" dx="100" dy="0" />
</filter>
</defs>
<rect x="0" y="0" width="100" height="100" fill="red"/>
<rect x="0" y="0" width="100" height="100" fill="blue" filter="url(#offset)"/>
</svg>
|