Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2
I'm guessing you are talking about SVG? When we use SVG's animate tag, we use attributeName to specify the attribute that is affected by the animation. Example: ``` <animate attributeName="x" from="10" to="500" dur="5s" fill="freeze" repeatCount="3" /> ``` Says that the X coordinate (attributeName="x") will be affected.
22nd Dec 2019, 2:56 PM
Edwin Pratt
Edwin Pratt - avatar