我正在尝试运行一个脚本,该脚本将淡出所有随机选择的 div。
似乎总是让一对夫妇坐在最后。
JS
function hideCube() {
$('#group').show('slow');
$('.pxl').each(function(index, element) {
var sleepTime = Math.floor(Math.random() * 5000);
var t = setTimeout(function() {
var d = Math.floor(Math.random() * 5000);
$(element).fadeTo(d, 0);
}, sleepTime);
});
}
$(function() {
$('.pxl').each(function(index, element) {
var sleepTime = Math.floor(Math.random() * 5000);
var t = setTimeout(function() {
var d = Math.floor(Math.random() * 1000);
$(element).fadeTo(d, 0.99);
}, sleepTime);
});
var h = setTimeout(hideCube, 3000);
});