arrêter
Méthode : stop
1
$(all).stop();
Arrête l'animation
1
$("#test").animate({left: '+=800'}, 5000);
2
$("#stop").click(function(){
3
$("#test").stop();
4
});
$(all).stop();
Arrête l'animation
$("#test").animate({left: '+=800'}, 5000);
$("#stop").click(function(){
$("#test").stop();
});