gpt4 book ai didi

javascript - 随机播放 jQuery 选择

转载 作者:行者123 更新时间:2023-11-29 16:12:12 25 4
gpt4 key购买 nike

我试图打乱 jQuery 选择的顺序而不打乱 DOM 中的元素

我需要打乱选择以随机顺序向每个元素添加一个类,我的代码应该是这样的:

$(".item").shuffle().each(function (i, element) {
$(element).delay(i * 100).queue(function (next) {
$(this).addClass("shown");
next();
});
});

谁能帮我找到我需要的 shuffle() 函数?

最佳答案

我从this answer中借用了Array.shuffle方法, 并把它做成一个 jQuery 插件

$.fn.shuffle = function(){
for(var j, x, i = this.length; i; j = Math.floor(Math.random() * i), x = this[--i], this[i] = this[j], this[j] = x);
return this;
};

FIDDLE

关于javascript - 随机播放 jQuery 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24831767/

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