I am trying to change the start position of an svg image to animate it along a path using animateMotion
You can check the current result here https://jsfiddle.net/7espvwuz/
In this fiddle I am using a circle to mock my image.
The problem is
- if I use
cx = 0
andcy = 0
, the animation starts at a wrong position - if I use
cx = 0
andcy = 100
, the circle is perfectly positioned but the animation is shifted by a value of100
in they
axis.
What am I doing wrong?