我已经设置了一个示例页面来使这个 rotator 脚本工作: http ://twohatsconsulting.com/rotator/
唯一的问题是,当页面刷新时,所有三个 DIV 都会出现,然后按预期淡入第一个 DIV。
我的 HTML 代码:
<div class="parent">
<div class="child">
first
</div>
<div class="child">
second
</div>
<div class="child">
third
</div>
<div>
我的 jQuery 代码:
var currentItem = -1;
var direction = 1;
$(document).ready(function(){
switchItem();
setInterval(switchItem, 5000);
});
function switchItem(){
currentItem = (currentItem+1) % ($(".parent .child").size());
// hide the visible one.
$(".parent .child:visible").fadeOut(500, function() {
//now that the hide is done, show the current one.
$(".parent .child").eq(currentItem).fadeIn(500);
});
}