我一直试图让这个脚本在页面加载后延迟几秒钟,但无法让它工作。我知道这里似乎还有其他类似的问题得到了解答,但我已经尝试实施他们的解决方案,但到目前为止还没有任何运气。
我非常感谢您提供的任何帮助。提前致谢!
<script>
$.fn.rotate = function(){
return this.each(function() {
var $children = $(this).children();
var position = -1;
!function loop() {
position = (position + 1) % $children.length;
$children.eq(position)
.fadeIn(1000)
.delay(7000)
.fadeOut(1000, loop);
}();
});
};
function show() {
AB = document.getElementById('.bannergroup');
AB.style.display = 'inline';
}
setTimeout("show()", 5000);
$(function(){
$(".banneritem").hide();
$(".bannergroup").rotate();
});
</script>