是否可以更改以下代码以使图像随机化?我玩过游戏,但是我尝试过的所有方法似乎都没有效果。我目前有3张图像在旋转,效果很好,只是无法弄清楚如何使顺序随机化。
我有以下代码:
谢谢。
菲尔
function cycleBackgrounds() {
var index = 0;
$imageEls = $('.headerImages .slide'); // Get the images to be cycled.
setInterval(function () {
// Get the next index. If at end, restart to the beginning.
index = index + 1 < $imageEls.length ? index + 1 : 0;
// Show the next
$imageEls.eq(index).addClass('show');
// Hide the previous
$imageEls.eq(index - 1).removeClass('show');
}, 4000);
};