这不适合我…
$(document).ready(function(){ $('#h .a').animate({ top:'-=80px' },90,'linear'); $('#h .au,#h .di').animate({ left:'-=80px' },50000000,'linear'); $('#h .r').animate({ left:'-=80px' },250,'linear'); $("#h").animate('pause'); //pausing it at the start //resume pause switch $("#h").mouSEOver(function(){ $(this).animate('resume'); }).mouSEOut(function(){ $(this).animate('pause'); }); });
解决方法
查看演示:
http://api.jquery.com/clearQueue/
看起来就像你想要做的那样.