-1:000000000000 | 0:7e3594c4356f |
---|---|
1 <svg xmlns="http://www.w3.org/2000/svg"> | |
2 | |
3 <animate id="x" begin="y.end"/> | |
4 <animate id="y"/> | |
5 | |
6 <script> | |
7 | |
8 function boom() | |
9 { | |
10 var x = document.getElementById("x"); | |
11 var y = document.getElementById("y"); | |
12 y.appendChild(x); | |
13 y.setAttributeNS(null, "dur", "0.5s"); | |
14 y.removeAttributeNS(null, "dur"); | |
15 } | |
16 | |
17 window.addEventListener("load", boom, false); | |
18 | |
19 </script> | |
20 | |
21 </svg> |