In HTML, this would look similar to the lines below:
<svg id="epXYG7cVTFr1" xmlns="http://www.w3.org/2000/svg"<!--..+.all.other.attributes.....-->><defs><radialGradient id="epXYG7cVTFr8-fill" cx="0" cy="0" r="0.5" spreadMethod="pad" gradientUnits="objectBoundingBox" gradientTransform="translate(0.5 0.5)"><!--....SVG'S.ACTUAL.CONTENT......................................--></svg>
<svg id="epXYG7cVTFr1" xmlns="http://www.w3.org/2000/svg"<!--..+.all.other.attributes.....-->><defs><radialGradient id="epXYG7cVTFr8-fill" cx="0" cy="0" r="0.5" spreadMethod="pad" gradientUnits="objectBoundingBox" gradientTransform="translate(0.5 0.5)"><!--....SVG'S.ACTUAL.CONTENT......................................--></svg>
<svg id="epXYG7cVTFr1" xmlns="http://www.w3.org/2000/svg"<!--..+.all.other.attributes.....-->><defs><radialGradient id="epXYG7cVTFr8-fill" cx="0" cy="0" r="0.5" spreadMethod="pad" gradientUnits="objectBoundingBox" gradientTransform="translate(0.5 0.5)"><!--....SVG'S.ACTUAL.CONTENT......................................--></svg>
The solution is to use <object> html tags, which creates a separate context for the animation, making it reusable on the same (or other) page(s) unlimited times. In the example below, each animation starts when clicked, having the background color animated as well & not affecting any other animation on the page.
Given usage looks in HTML's source something like this one:
<div>
<object data="https://cdn.svgator.com/media/2024/12/The-Walking-Ball.svg?v=2"></object>
<object data="https://cdn.svgator.com/media/2024/12/The-Walking-Ball.svg?v=2"></object>
<object data="https://cdn.svgator.com/media/2024/12/The-Walking-Ball.svg?v=2"></object>
</div>
Use Export Settings to Regenerate Unique IDs
In the Export Settings of the editor, there is an option to regenerate the exported IDs to ensure they are unique for each export.
This feature is designed to prevent ID conflicts when reusing inline SVGs. Refer to the screenshot below to locate this option in the Export Settings panel:
Following the steps above would result in the same desired functionality as with object tags.