animate語法:
代碼如下:
$(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 p { position: absolute; left: 0;top: 0; height: 50px; width: 50px; background : #FA0; } </style> </head> <body> <input type="button" id="btn1" value="停止當(dāng)前動畫"> <input type="button" id="btn2" value="停止所有動畫"> <input type="button" id="btn3" value="停止所有動畫,到達(dá)終點"> <p class="wrap"> <p></p> </p> <script> function moveX(){ $('.wrap p').animate({'left':'250px'},1000).animate({'left':'0px'},1000); } moveX(); $('#btn1').click(function(){ $('.wrap p').stop(); // 停止當(dāng)前動畫,沿路返回起點,若是返回過程中再點擊,會暫停在路中 clearInterval(); }) $('#btn2').click(function(){ $('.wrap p').stop(true); // 停止所有動畫 去的路程中點擊停止會直接到達(dá)終點,若是返回過程中再點擊,會暫停在路中 }) $('#btn3').click(function(){ $('.wrap p').stop(true,true); // 停止所有動畫 ,去的路程中點擊停止會直接到達(dá)終點,若是返回過程中再點擊,會停止到在起點 }) // .stop() // 停止當(dāng)前動畫 // .stop(true) // 停止所有動畫 // .stop(true,true) // 停止所有動畫,到達(dá)動畫終點 </script> </body> </html>
.stop(); // 停止當(dāng)前動畫,沿路返回起點,若是返回過程中再點擊,會暫停在路中
.stop(true); // 停止所有動畫 去的路程中點擊停止會直接到達(dá)終點,若是返回過程中再點擊,會暫停在路中
.stop(true,true); // 停止所有動畫 ,去的路程中點擊停止會直接到達(dá)終點,若是返回過程中再點擊,會停止到在起點
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com