blob: 7b3a3c39c079d4a252fccdffd13f3ac642d198c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<html>
<body onload="document.getElementById('containerA').pauseAnimations()">
<svg id="containerA">
<animate id="ia" end="50s"></animate>
<animate begin="60s" end="ic.end"></animate>
</svg>
<svg>
<animate id="ic" end="ia.end"></animate>
</svg>
</body>
</html>
|