php 瀑布流布局,超简单的瀑布流布局实现方法

本文主要介绍了jquery实现超简单的瀑布流布局的实例,代码简单,容易修改。下面跟着小编一起来看下吧,希望能帮助到大家。

1.看看效果吧!

15352302af06b943bae24cc3f269a72b.png

2.html代码index.html

Title

ul{position: relative;padding: 0 -3px;list-style: none;width: 600px;margin: 0 auto}

li{width: 33.33%;position: absolute;box-sizing: border-box;display: block; }

img{width: 100%;height: auto;display: block;}

3.插件代码

(function ($) {

$.fn.flowLayout = function(options) {

var dft = {

gapWidth:16, //间隙

gapHeight:16, //间歇

column:3 //列

};

var ops = $.extend(dft,options);

var _this = $(this);

_this.width((_this.parents('.flowLayout-box').width()-2*ops.gapWidth)/3)

var _pWidth=_this.parents('.flowLayout-box').width();

$(".flowLayout-box").css({

'opacity':0

});

var columnHeight=[],columnIndex=0;

for (var i=0 ;i

columnHeight.push(0);

}

setTimeout(function () {

for(var j =0 ; j< _this.length ;j++){

console.log(columnHeight[columnIndex]);

$(_this).eq(j).css({

'top':columnHeight[columnIndex]+ops.gapHeight+'px',

'left':_pWidth*columnIndex/3+'px'

})

columnHeight[columnIndex]+=$(_this).eq(j).height()+ops.gapHeight

columnIndex=getIndex();

}

},50)

function getIndex() {

var columnIndex=0,maxHeight=0;

for(var i =0 ;i < columnHeight.length ;i++){

if(columnHeight[i]

columnIndex=i;

}

if(columnHeight[i]>maxHeight){

maxHeight=columnHeight[i]

}

}

$(".flowLayout-box").css({

'opacity':1,

'height':maxHeight

});

return columnIndex;

}

}

})(jQuery);

4.调用代码

$(function () {

$('.flowLayout-box li').flowLayout({});

})

代码简单,容易修改,,拿去用吧。

相关推荐:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值