I am trying to make a callback possible after an animation is complete.
pieceimg.animate({path:path}, {duration:2000*path.length, //120
step:path.step,
easing:"linear",
complete:function() {
if (finalcallback)
finalcallback();
}
});
path is a simple javascript "class" which has some prototype functions defined correspondingly.
When does the complete call happen here? Is is at the end of every step (but then step is supposed to called too)?
I have some animation in the finalcallback() function. It gets triggered before this animation is complete. Need help!!
Thanks!