25 lines
918 B
XML
25 lines
918 B
XML
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%">
|
|
|
|
<defs>
|
|
<!-- Da gradient -->
|
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0">
|
|
<stop offset="0%" style="stop-color:#83254F;"/>
|
|
<stop offset="50%" style="stop-color:#DF4B30;"/>
|
|
<stop offset="100%" style="stop-color:#83254F;"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="0" y="0" width="150%" height="100%" fill="url(#gradient)">
|
|
<animate attributeType="XML"
|
|
attributeName="x"
|
|
from="0" to="150%"
|
|
dur="40s"
|
|
repeatCount="indefinite"/>
|
|
</rect>
|
|
<rect x="-150%" y="0" width="150%" height="100%" fill="url(#gradient)">
|
|
<animate attributeType="XML"
|
|
attributeName="x"
|
|
from="-150%" to="0"
|
|
dur="40s"
|
|
repeatCount="indefinite"/>
|
|
</rect>
|
|
</svg> |