JQuery动画animate的stop方法使用详解
animate语法:
.stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中
.stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中
.stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点
代码如下:
$(selector).animate(styles,speed,easing,callback)
代码如下:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Testing</title> <link rel="stylesheet" href="css/reset.css"> <script src="js/jquery.js"></script> <style> .wrap { position: relative; height: 300px; width: 300px; border:5px solid #FCF; } .wrap div { position: absolute; left: 0;top: 0; height: 50px; width: 50px; background: #FA0; } </style> </head> <body> <input type="button" id="btn1" value="停止当前动画"> <input type="button" id="btn2" value="停止所有动画"> <input type="button" id="btn3" value="停止所有动画,到达终点"> <div class="wrap"> <div></div> </div> <script> function moveX(){ $('.wrap div').animate({'left':'250px'},1000).animate({'left':'0px'},1000); } moveX(); $('#btn1').click(function(){ $('.wrap div').stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中 clearInterval(); }) $('#btn2').click(function(){ $('.wrap div').stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中 }) $('#btn3').click(function(){ $('.wrap div').stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点 }) // .stop() // 停止当前动画 // .stop(true) // 停止所有动画 // .stop(true,true) // 停止所有动画,到达动画终点 </script> </body> </html>
.stop(); // 停止当前动画,沿路返回起点,若是返回过程中再点击,会暂停在路中
.stop(true); // 停止所有动画 去的路程中点击停止会直接到达终点,若是返回过程中再点击,会暂停在路中
.stop(true,true); // 停止所有动画 ,去的路程中点击停止会直接到达终点,若是返回过程中再点击,会停止到在起点
相关推荐
89463661 2019-12-04
suis 2019-11-16
LingPF 2019-11-08
钱多多 2013-05-29
王福朋 2018-02-28
CandyGoo 2014-08-19
84483065 2019-03-25
limengmeng00 2018-08-22
CrazyDogWang 2017-02-14
无情 2015-06-25
liusure0 2015-06-11
zyhui 2015-06-10
富贵 2015-01-16
zhangmingming 2013-05-29
XiaoSpring 2011-01-24
Haoroid 2018-01-16
natineprince 2017-03-15
87244857 2019-05-08
natineprince 2016-07-13