I have the following SVG and I would like to draw the circles pixel by pixel on the path after moveing. It's like when the snail goes he let a streak behind him. So my question is how to draw the light red circles?
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 1000 200" id="svgBox" style="background-color:#e4e4e4">
<path d="M3.858,58.607 c16.784-5.985,33.921-10.518,51.695-12.99c50.522-7.028,101.982,0.51,151.892,8.283c17.83,2.777,35.632,5.711,53.437,8.628 c51.69,8.469,103.241,11.438,155.3,3.794c53.714-7.887,106.383-20.968,159.374-32.228c11.166-2.373,27.644-7.155,39.231-4.449L10,10" stroke="grey" stroke-width="1" fill="none" id="animateMotion"/>
<circle cx="" cy="" r="5" fill="red">
<animateMotion dur="6s" repeatCount="0">
<mpath xlink:href="#animateMotion"/>
</animateMotion>
</circle>
</svg>
You can do something like this for an instance:
Maybe this article which I think will give you some pointers, and its linked example CodePen here. I cut & pasted your path and set the id and the line gets drawn as per your 'snail trail' requirement.
Here is the resulting svg:
And the CSS