+ 1
Please help am trying to make this slide.
2 Antworten
+ 6
You must close the <circle> tag element, and use a relevant attribute name to animate:
<svg width="1000" height="250">
<circle cx="150" cy="150" r="50" fill="orange">
<animate attributeName="cx" from="0" to="300" dur="3s" fill="freeze" repeatCount="2"/>
</circle>
</svg>
(added '</circle>' and changed 'attributeName' value)
+ 1
Oh thank you so much