I checked jQuery Path plugin, and tried to animate a DIV following along a path. I succeed to make the DIV moving along the path, but I would like the DIV to head according to the path direction ( rotate when following the beizer path ). How can I do it?
Here is my current code :
$('#car001').click(function() {
var bezier_params = {
start: {
x: 185,
y: 385,
angle: 50
},
end: {
x:540,
y:110,
angle: -10,
length: 0.25
}
}
$("#car001").animate({path : new $.path.bezier(bezier_params)}, 1000);
});
which $('#car001') contains 1 image only.