我需要在同一位置一個一個地顯示一些div。與this非常相似。jquery一個接一個地加載div,沒有自動循環
// First hide them all
$("#fades div").hide();
function fades($div, cb) {
$div.fadeIn(100, function() {
$div.fadeOut(100, function() {
var $next = $div.next();
if ($next.length > 0) {
fades($next, cb);
}
else {
// The last element has faded away, call the callback
cb();
}
});
});
}
function startFading($firstDiv) {
fades($firstDiv, function() {
startFading($firstDiv);
});
}
startFading($("#fades div:first-child"));
但我需要最後一個div來顯示畢竟(沒有循環)。
如果訪問者需要再次看到循環,他們需要按下或單擊文本或按鈕。 謝謝
哪來的CB回調函數? –