jQuery---手風琴案例+stop的使用(解決動畫佇列的問題)
阿新 • • 發佈:2020-08-12
手風琴案例+stop的使用(解決動畫佇列的問題)
stop();// 停止當前正在執行的動畫
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> * { margin: 0; padding: 0; } ul { list-style: none; width: 1300px; } #box{ width: 1200px; height: 400px; border: 2px solid red; margin: 100px auto; } #box li { width: 240px; height: 400px; /*border: 1px solid #000;*/ float: left; } </style> </head> <body> <div id="box"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> <script src="../jquery-1.12.4.js"></script> <script> $(function () { //獲取所有的li var $li = $("#box li"); //迴圈遍歷拿到每個li for(var i = 0; i < $li.length; i++) { //當前的li設定背景圖,圖片地址用當前的 $li.eq(i).css("backgroundImage", "url(images/" + (i + 1) + ".jpg)"); } //註冊滑鼠進入的事件 $li.mouseenter(function () { //設定在當前li的時候的動畫,和兄弟的動畫 $(this).stop().animate({ width: 800 }).siblings().stop().animate({ width: 100 }); }).mouseleave(function () { //設定滑鼠離開時候,li的動畫 $li.stop().animate({ width: 240 }); }); }); </script> </body> </html>