mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
567 B
XML
15 lines
567 B
XML
<?xml version="1.0"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<defs>
|
|
<circle id="circleID" cx="20" cy="100" r="10" fill="orange" stroke="black">
|
|
<animateTransform attributeName="transform" type="scale"
|
|
from="1" to="2" begin="0" dur="3"/>
|
|
</circle>
|
|
<rect id="rectID" fill="green" stroke="black" height="100" width="100">
|
|
<animate attributeName="fill" from="white" to="blue" begin="0" dur="3"/>
|
|
</rect>
|
|
</defs>
|
|
<use xlink:href="#circleID"/>
|
|
</svg>
|