gpt4 book ai didi

jquery - Crossfade 图像淡入淡出与匹配图像

转载 作者:行者123 更新时间:2023-11-28 07:52:28 25 4
gpt4 key购买 nike

我对幻灯片有疑问。有什么方法可以让我看到图像淡入淡出..

Here是一把 fiddle 。

function cycleImages(){

var $active = $('#cycler .active');
var $next = ($active.next().length > 0) ? $active.next() : $('#cycler img:first');
$next.css('z-index',2);//move the next image up the pile
$active.fadeOut(1500,function(){//fade out the top image
$active.css('z-index',1).show().removeClass('active');//reset the z-index and unhide the image
$next.css('z-index',3).addClass('active');//make the next image the top one
});
}

$(document).ready(function(){
// run every 4s
setInterval('cycleImages()', 4000);
})

最佳答案

你有一个开始,我想你一旦改变这个就能​​够弄清楚:

setInterval('cycleImages()', 4000);

为此:

setInterval(function(){cycleImages()}, 4000);

然后从那里修复您的代码。

关于jquery - Crossfade 图像淡入淡出与匹配图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30315252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com