http://codepen.io/KeliChiu/pen/gabNWM Hi, I am trying to reverse the moving direction of the two red dots along the path in the SMIL SVG animation. For all the attribute I
The simplest way is to use the keyTimes and keyPoints attributes to tell the animation to run backwards.
keyTimes
keyPoints
keyPoints="1;0" keyTimes="0;1"
Here we are telling the animation to be at position "1" on the path (the end) at time 0, and position 0 (the start) at the end of the animation.
Demo: