+ 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.