roadRun
roadRun
<svg xmlns="http://www.w3.org/2000/svg"
width="200" height="200" viewBox="0 0 200 200">
<g>
<line x1="0" x2="200" y1="100" y2="100"
style="stroke-width:50;stroke:black"/>
<line x1="0" x2="200" y1="100" y2="100"
style="stroke-dasharray:20;stroke-width:3;stroke:yellow"/>
<animate attributeName="stroke-dashoffset"
from="100"
to="300"
dur="3s"
begin="0s"
repeatCount="indefinite"/>
</g>
</svg>
roadRun
<svg xmlns="http://www.w3.org/2000/svg"
width="200" height="200" viewBox="0 0 200 200">
<g>
<line x1="0" x2="200" y1="100" y2="100"
style="stroke-width:60;stroke:black"/>
<line x1="0" x2="200" y1="100" y2="100"
style="stroke-dasharray:50;stroke-width:5;stroke:white"/>
<animate attributeName="stroke-dashoffset"
from="100"
to="300"
dur="3s"
begin="0s"
repeatCount="indefinite"/>
</g>
</svg>