+ 5
My first simple animation code in html
4 odpowiedzi
+ 12
Nice. Try this.
<body>
<svg height=100% width=100%>
<circle cx=50% cy=50% r=20px fill="blue">
<animate attributename="r" from=0px to=300px fill=freeze dur="1s" repeatcount="100"/>
</circle>
</svg>
</body>
+ 10
nice!
+ 4
See this also
I have played with radius in this Code
https://code.sololearn.com/W3vgw3F4ygxk/?ref=app
+ 1
Well Done!