gpt4 book ai didi

javascript - 创建一个动画序列循环 jquery

转载 作者:太空狗 更新时间:2023-10-29 15:51:16 25 4
gpt4 key购买 nike

我正在尝试创建一个连续的循环动画,其中一个 div img 淡入,然后下一个淡出最后一个,这就是我目前所拥有的。

JavaScript:

function fadeLoop() {
$(".circle img").each(function(index) {
$(this).delay(1000*index).fadeIn(500);
});
};

$('.circle').delay(2000).fadeIn(2000,function() {
fadeLoop();
});

HTML:

<div class="circle" id="first-circle">
<img src="test.jpg"/>
<a href="">ART</a>
</div>
<div class="circle" id="second-circle">
<img src="test.jpg"/>
<a href="">FASHION</a>
</div>
<div class="circle" id="third-circle">
<img src="test.jpg"/>
<a href="">DECOR</a>
</div>

CSS:

.circle { border-radius:300px; width:300px; border:5px solid #ccc; height:300px;margin:10px; padding:0px; float:left; display:none; position:relative; }
.circle a { position:relative; z-index:999; margin:0 auto; line-height:300px; display:block; width:300px; text-align:center; font-family: sans-serif; font-weight:normal; text-transform:capitalize; color:#fff; font-size:60px; text-decoration:none; }
#first-circle img, #second-circle img, #third-circle img { display:none; }
#first-circle { background:#803131; }
#second-circle { background:#751c20; }
#third-circle { background:#803131; }
#first-circle img { border-radius:300px; width:300px; height:300px; position:absolute; top:0px; left:0px;}
#second-circle img { border-radius:300px; width:300px; height:300px; position:absolute; top:0px; left:0px;}
#third-circle img { border-radius:300px; width:300px; height:300px; position:absolute; top:0px; left:0px;}

现场演示:jsFiddle

我确信这不会太远,我需要做的就是淡出最后一个,在下一个中我有一个序列,但需要扩展它并使其循环。

最佳答案

这可能对你有帮助

$(function(){
(function(){
var circles=$('.circle'), i=0;
function shuffle()
{
$(circles[i]).fadeIn(2000, function(){
i=(i < circles.length-1) ? (i+1) : 0;
setTimeout(function(){
$('.circle').fadeOut(2000);
shuffle();
}, 2000);
});
}
shuffle();
})();
});​

DEMO .

关于javascript - 创建一个动画序列循环 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12569879/

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