Plz help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Plz help

<svg width="1000" height="250"> <circle align="center" cx="170" cy="125" r="20" fill="yellow"> <animate attributeName="r" from="20" to="35" dur="1s" fill="freeze" repeat Count="250 times"/> </circle> </svg> Its not repeating.

21st Aug 2020, 1:26 AM
Kapish M Kantharia ( available)
Kapish M Kantharia ( available) - avatar
8 Answers
+ 4
Do not -> repeat Count = "250 times" Do -> repeatCount = "250"
21st Aug 2020, 2:18 AM
Kevin ★
+ 4
It is repeating. If you still can't see it then try running the code in other(modern) browser. https://code.sololearn.com/W1kL9f0fq4BB/?ref=app
21st Aug 2020, 8:45 AM
Kevin ★
+ 3
No you can make this code in your code bits then share it.
21st Aug 2020, 1:52 AM
Samira
Samira - avatar
+ 2
There you shouldn't use space between repeat and count.
21st Aug 2020, 1:33 AM
Samira
Samira - avatar
+ 2
<svg width="1000" height="250"> <circle align="center" cx="170" cy="125" r="20" fill="yellow"> <animate attributeName="r" from="20" to="35" dur="1s" fill="freeze" repeatCount="250"/> </circle> </svg>
21st Aug 2020, 8:07 PM
Vinayak Pandey
Vinayak Pandey - avatar
+ 1
Now also its not repeating
21st Aug 2020, 1:41 AM
Kapish M Kantharia ( available)
Kapish M Kantharia ( available) - avatar
+ 1
Ok i m sending u
21st Aug 2020, 1:50 AM
Kapish M Kantharia ( available)
Kapish M Kantharia ( available) - avatar
0
But now also its not repeating
21st Aug 2020, 8:39 AM
Kapish M Kantharia ( available)
Kapish M Kantharia ( available) - avatar