1<?xml version="1.0" standalone="no"?>
2<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
4	<title>Wipe left to right</title>
5	<defs>
6		<linearGradient id="gradient1" x1="0" y1="0" x2="1" y2="0">
7			<stop offset="-0.2" stop-color="white" stop-opacity="0">
8				<animate attributeName="offset" from="-0.2" to="1" />
9			</stop>
10			<stop offset="0" stop-color="white" stop-opacity="1">
11				<animate attributeName="offset" from="0" to="1.2" />
12			</stop>
13		</linearGradient>
14		<mask id="mask1">
15			<rect x="0%" y="0%" width="100%" height="100%" fill="url(#gradient1)" />
16		</mask>
17		<linearGradient id="gradient2" x1="0" y1="0" x2="1" y2="0">
18			<stop offset="0" stop-color="white" stop-opacity="1">
19				<animate attributeName="offset" from="0" to="1.2" />
20			</stop>
21			<stop offset="0.1" stop-color="white" stop-opacity="0">
22				<animate attributeName="offset" from="0.1" to="1.3" />
23			</stop>
24		</linearGradient>
25		<mask id="mask2">
26			<rect x="0%" y="0%" width="100%" height="100%" fill="url(#gradient2)" />
27		</mask>
28	</defs>
29	<rect width="100%" height="100%" fill="#000000" />
30	<image id="image2" width="100%" height="100%" preserveAspectRatio="xmidymid meet" mask="url(#mask2)" />
31	<image id="image1" width="100%" height="100%" preserveAspectRatio="xmidymid meet" mask="url(#mask1)" />
32</svg>
33