OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <svg> | |
3 <rect id="#reference" x="10" y="10" width="10" height="10" style="fill: red"/> | |
4 <rect id="#target" x="10" y="0" width="10" height="10" style="fill: gree n"> | |
5 <set attributeName="y" attributeType="XML" to="10" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Shape" /> | |
6 <set attributeName="x" attributeType="XML" to="20" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#BogusFeature" /> | |
7 </rect> | |
8 </svg> | |
9 <script> | |
10 document.querySelector("svg").setCurrentTime(0.5); | |
11 </script> | |
OLD | NEW |