我有一个HTML幻灯片菜单。 用下面的:
<div class="slide">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/1.png" alt="">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/2.png" alt="">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/3.png" alt="">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/4.png" alt="">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/5.png" alt="">
<img typeof="foaf:Image" class="image-style-mylogo" src="http://site.com/6.png" alt="">
</div>
我想,就可以享有每次刷新随机排序图像。 我用这个代码:
function reorder() {
var grp = $(".slide").children();
var cnt = grp.length;
var temp, x;
for (var i = 0; i < cnt; i++) {
temp = grp[i];
x = Math.floor(Math.random() * cnt);
grp[i] = grp[x];
grp[x] = temp;
}
$(grp).remove();
$(".slide").append($(grp));
}
function orderPosts() {
$(".slide").html(orig);
}
但不工作。 什么可能我是做错了什么?
你reorder()
函数是好的,我在这拨弄测试它: http://jsfiddle.net/kokoklems/YpjwE/
我没有使用的第二功能orderPosts()
虽然...
还有一个更简单的方法来做到这一点。 由于jQuery的集合是阵列状,你可以叫他们本地阵列原型。 因此,使用本机Array.sort
,你的代码改写如下:
var grp = $(".slide").children(); // the original collection, if you want to save it...
Array.prototype.sort.call(grp, function() {
return Math.round(Math.random())-0.5;
});
$('.slide').empty().append(grp);
这里是一个演示: http://jsfiddle.net/JTGfC/
我不知道这是否是100%洁净,但你可以在这里申请费雪耶茨,没有jQuery的依赖。
fisherYates(document.getElementsByClassName('slide')[0]);
// Fisher-Yates, modified to shuffle DOM container's children instead of an array.
function fisherYates (node)
{
var children = node.children,
n = children.length;
if (!n) {
return false;
}
while (--n) {
var i = Math.floor( Math.random() * ( n + 1 ) ),
c1 = children[n];
node.insertBefore(c1, children[i]);
}
}
演示
这应该为你做它:
function reorder() {
var grp = $(".slide").children();
var cnt = grp.length;
var indexes = [];
// Build a array from 0 to cnt-1
for (var i = 0; i < cnt; i++) {
indexes.push(i);
}
// Shuffle this array. This random array of indexes will determine in what order we add the images.
indexes = shuffle(indexes);
// Add the images. (No need to remove them first, .append just moves them)
for (var i = 0; i < cnt; i++) {
$(".slide").append($(grp[indexes[i]]));
}
}
function shuffle(o){
for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
return o;
}
随机播放功能源
工作示例 (我用的跨度,而不是图像,显示效果更好)