I want to move a div down a page, and I want it to slow down as it reaches the target.
I tried using call back with recursive func but it doesn’t look smooth:
function MovePanel()
{
sidePanel.animate({"marginTop": newCurrTop}, moveSpeed,function(){MovePanel();});
Is it possible to slow down an JQuery animation?
If not what are the alternatives?
Thanks.