+ 2
Can i make svg image move?
i want to try making it move either hover or auto move.
4 Respuestas
+ 3
If you just want the shape to move, use <animate>.
If you want to animate the 'transform' attribute of a shape, use <animateTransform>.
+ 3
Sundown effect:
<svg>
<circle r="100" cx="100" cy="100" fill="orangered">
<animate attributeName="cy" from="100" to="200" dur="3s" fill="freeze"/>
</circle>
</svg>
+ 2
sorry i don't know any way in html though you can java script as js is more suitable for website behaviour than html.
0
what does cx cy r do