I've designed an SVG using Illustrator and I have a specific animation in mind for it.
My goal is to create an animation where the upper part of the circle line rotates from left to right (considering that there are 4 circle lines, with number one starting from the bottom inside the circle) and the next circle line rotates from right to left. Below is the SVG code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="700px" height="700px" viewBox="0 0 3000 3000" enable-background="new 0 0 3000 3000" xml:space="preserve">
<g>
<g>
<!-- Add your paths here -->
</g>
<g>
<!-- Add more paths here -->
</g>
<g id="XMLID_1_">
<g>
<!-- More paths to animate -->
</g>
<g>
</g>
</g>
<g>
<!-- Paths used for animation -->
</g>
</svg>
How can I implement this animation in my SVG file, with circle line 4 moving from left to right and circle line 3 moving from right to left?