随机排列内容

jQuery(function($) {
//    var menuYloc = $(".div-scroll").offset().top;
//    $(window).scroll(function (){ 
//        var offsetTop = menuYloc + $(window).scrollTop() +"px";
//        $(".div-scroll").animate({top : offsetTop },{ duration:50 , queue:false });
//    });
    
    var randomGroup = [ $('.section01'), $('.section02'), $('.section03') ],
    current;
    
    for(var i = 0; i < 3; i++){
        current = randomGroup.splice(Math.floor(Math.random() * randomGroup.length), 1);
        
        current[0].prependTo('.wraper');
    }
});

.wraper中会随机排列section01到section03。

原文地址:https://www.cnblogs.com/haimingpro/p/3528602.html