为什么在360浏览器图片会重叠啊???火狐浏览器有正常显示。。。。jQuery有兼容么?????
function waterfall(){
var divs= $("#wrapper>div");
var picW= divs.eq(0).outerWidth();//一个模块的宽
var num= Math.floor($(window).width()/picW); //模块列数 向下取整
$("#wrapper").width(num*picW).css('margin','0 auto');//大模块居中
var hArry=[];//存储高度
divs.each(function(index,element){
var h=divs.eq(index).outerHeight();
if(index<num){
hArry[index]=h;
}else{
var minH=Math.min.apply(null,hArry);
var minIndex=$.inArray(minH,hArry);
$(element).css({
'position':'absolute',
'top':minH+'px',
'left':minIndex*picW+'PX'
})
hArry[minIndex]+=h;
}
})
}