gpt4 book ai didi

jquery - 如何在 jQuery 中淡入/淡出计数器?

转载 作者:行者123 更新时间:2023-12-01 04:55:30 25 4
gpt4 key购买 nike

所以我有一堆 div,每个 div 都包含一个数字。我正在尝试设置一个计数器,其计数如下:

1 2 3
2 3 4
3 4 5
4 5 1
1 2 3

等等。你可以看到我当前的代码 - here on jsFiddle .

我试图让节点一次淡入和淡出一个节点,而不是显示/隐藏整个容器。

最佳答案

这是一种方法:

//I didn't wrap the roller inside a function for this example, but you can pass
//these values as arguments to a function instead of assigning them here:
var $slides = $('#slides'),
n = 3; //number of visible children (`.speaker`)

//init by hiding the children with index larger than `n`
$slides.children(':gt('+(n-1)+')').hide();

//note that :eq and :gt are 0-based, hence the n-1. You could also assign
//n -= 1 or n-- after receiving the n parameter if using a function wrapper
setInterval(function () {
$slides.children(':first').fadeOut(600, function () {
$slides.append(this).children(':eq('+(n-1)+')').fadeIn(600);
});
}, 1500);

Fiddle

关于jquery - 如何在 jQuery 中淡入/淡出计数器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14574923/

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