+ 1
Why doesn't this svg animate? Need help!
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <svg height="1000" width="1000"> <circle cx="30" cy="30" r="10" fill="black"> <animate attributename="x" from="30" to="60" dur="2s" fill="freeze" repeatcount="10"></animate> </svg> </body> </html>
3 ответов
+ 3
It is animating. It’s working perfectly fine
https://code.sololearn.com/Wp4a8SVBDy0V/?ref=app
+ 2
Some guideline that helped me
https://code.sololearn.com/WbL6WO7FvjO4/?ref=app
0
Thanks