blob: 61ce419f532d5c8035eebe600dcedf7bf43ad4a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg"
onload="
document.documentElement.pauseAnimations();
document.documentElement.setCurrentTime(0);
document.getElementById('b').removeAttribute('begin');
document.getElementById('a').setAttribute('dur', '1s')">
<rect>
<animate attributeName="y" attributeType="XML" id="a"/>
<animate attributeName="fill" attributeType="CSS" id="b"
begin="a.end" dur="2s"/>
</rect>
</svg>
|