+ 1
Why the eye ball is not showing any kind of animation in my devices but the code seems to be correct enough?please help .
3 Réponses
+ 2
Change:
<animate attributeName="r" from="12"to"14" dur="0.1s" repeatCount="333">
To:
<animate attributeName="r" from="12" to="14" dur="0.1s" repeatCount="333">
And:
<animate attributeName="r"
from="12"to"14" dur="0.1s"
repeatCount="333">
To:
<animate attributeName="r"
from="12" to="14" dur="0.1s"
repeatCount="333">
https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
0
thnx for ur help
0
I didn't marked that