Hi. Why does not the circle move? And the rectangle moves. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Hi. Why does not the circle move? And the rectangle moves.

<svg width="1000" height="250"> <circle cx="50" cy="50" r="50" fill="red"> <animate attributeName="y" from="0" to="1000" dur="10s" fill="freeze" repeatCount="10"/> </cricle> </svg> <svg width="1000" height="250"> <rect width="150" height="150" fill="orange"> <animate attributeName="x" from="0" to="300" dur="3s" fill="freeze" repeatCount="2"/> </rect> </svg> <svg width="2000" height="2000"> <circle cx="100" cy="100" r="70" fill="red" /> </svg>

30th Aug 2017, 9:20 AM
Aidos Zhakupov
Aidos Zhakupov - avatar
3 Answers
+ 9
"attributeName" in circle should be "cy" instead of "y"
30th Aug 2017, 9:23 AM
Nomeh Uchenna Gabriel
Nomeh Uchenna Gabriel - avatar
+ 8
cx moves in L-R direction. cy moves in the U-D direction
30th Aug 2017, 9:25 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 3
Thank you
30th Aug 2017, 9:26 AM
Aidos Zhakupov
Aidos Zhakupov - avatar