我已经在这里工作了好几个小时,但我无法让它工作。基本上我想要做的是在我的wordpress网站上有一个特色框,3个Divs应该会在几秒钟后自动互换,但是我尝试过的很多js解决方案都没有用。
有人有什么想法吗?
可以找到该网站here
答案 0 :(得分:1)
快速举例说明它的外观:
function play() {
setTimeout(function() {
var $visible = $('#featuredcontent>div:visible').fadeOut(1000);
var $next = $visible.next();
($next.length ? $next : $('#featuredcontent>div:first-child')).fadeIn(1000, play);
}, 5000);
}
play();