Is it possible to rotate the dashed stroke circle clockwise instead of counter-clockwise? I believe it can be achieved using PATH, but I am unsure of how to create it.
<svg preserveAspectRatio="none" viewBox="0 0 500 500" >
<circle cx="200" cy="200" r="167" stroke-dasharray="2,4" stroke-width="2" stroke="red" fill="white" stroke-linecap="round" />
<circle cx="200" cy="200" r="167" stroke-dasharray="1200,1200" stroke-width="3" stroke-dashoffset="0" stroke-linecap="round" stroke="white" fill="none" >
<animate attributeType="XML" attributeName="stroke-dashoffset" from="0" to="1200" dur="4s" repeatCount="1" fill="freeze" />
</circle>
</svg>
Check out the code snippet on this link.
Thank you in advance for your help!