animate语法: 复制代码 代码如下: $(selector).animate(styles,speed,easing,callback) 复制代码 代码如下: Testing <BR>.wrap { <BR>position: relative; <BR>height: 300px; <BR>width: 300px; <BR>border:5px solid #FCF; <BR>} <BR>.wrap div { <BR>position: absolute; <BR>left: 0;top: 0; <BR>height: 50px; <BR>width: 50px; <BR>background: #FA0; <BR>} <BR> <BR>function moveX(){ <BR>$('.wrap div').animate({'left':'250px'},1000).animate({'left':'0px'},1000); <BR>} moveX(); <br><br>$('#btn1').click(function(){ <BR>$('.wrap div').stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中 <BR>clearInterval(); <BR>}) <br><br>$('#btn2').click(function(){ <BR>$('.wrap div').stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中 <BR>}) <br><br>$('#btn3').click(function(){ <BR>$('.wrap div').stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点 <BR>}) <br><br>// .stop() // 停止当前动画 <BR>// .stop(true) // 停止所有动画 <BR>// .stop(true,true) // 停止所有动画,到达动画终点 <BR> .stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中 .stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中 .stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点