0
我有一個簡單的滑塊,可以正常工作,但在第一秒鐘內,也許頁面加載,它會變得混亂,很奇怪。頁面加載滑塊jquery出現問題
JQUERY
var currentIndex = 0;// store current pane index displayed
var ePanes = $('#slider li'), // store panes collection
time = 3000,
bar = $('.progress_bar');
function showPane(index){// generic showPane
// reset bar
bar.stop(true, true).css("width", 0).animate({'width': "100%"}, time, run);
// hide current pane
ePanes.eq(currentIndex).stop(true, true).fadeOut();
// set current index : check in panes collection length
currentIndex = index;
if(currentIndex < 0) currentIndex = ePanes.length-1;
else if(currentIndex >= ePanes.length) currentIndex = 0;
// display pane
ePanes.eq(currentIndex).stop(true, true).fadeIn();
}
// apply start pane
showPane(0);
function run(){
bar.width(0);
showPane(currentIndex+1);
bar.animate({'width': "100%"}, time, run);
}
run();
TNKS,但增加了一個延遲滑塊,不能我們只是展示,而第一張幻燈片還在加載其他幻燈片? – user1765661
@ user1765661是的,這就是爲什麼我提到「相應調整了'jQuery'」。只需從頭開始在'ul#slider'中加載第一個'li',或者使用CSS僞類來定位第一個'li'。例如,'ul#slider li:first-child {display:block; }' – RhapX