I would like to create a path as some curve, probably quad curve. It can be done similarly to http://www.html5canvastutorials.com/labs/html5-canvas-modify-curves-with-anchor-points-using-kineticjs/
Then I am able to create image object. However, I want to animate it along the created path (move it from start point to end point of the curve). I can use Javascript+Canvas+KineticJS(v 4.7.1). Is there any way, how to do it? I can't find any example which solves this.
Demo: http://jsfiddle.net/m1erickson/nnU89/
You can calculate points along a quadratic curve with this formula:
You pass in:
Then you can create a Kinetic.Animation that animates along the curve: