Bootstrap-waterfall瀑布流

http://wlog.cn/waterfall/

js引用
<link href="path/to/css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap-waterfall.js"></script>      
HTML结构

使用一个div来作为瀑布流的容器

<div id="waterfall-container">
    <!-- Should have markups of the list of pins here -->
</div>

在容器中可以放置列表或一组div元素

<ul class="pin"><img src="" /></ul>
<ul class="pin"><img src="" /></ul>
<ul class="pin"><img src="" /></ul>
或者
<div class="pin"><img src="" /></div>
<div class="pin"><img src="" /></div>
<div class="pin"><img src="" /></div>  

img标签需要使用一个div来包裹并为容器设置一个宽度:

<div class="pin">
  <img src="images/3.jpg" />
</div>  

.waterfall .pin {
  width: 200px;
}   

初始化

$(function(){
    $('#container').waterfall({
        itemCls: 'item',
        colWidth: 230,
        gutterWidth: 15,
        gutterHeight: 15,
        checkImagesLoaded: true,
        dataType: 'html',
        path: function(page) {
            return '/ajax/?page=' + page;
        },
        callbacks:{
            /*
             * loadingError
             * @param {String} xhr , "end" "error"
             */
            loadingError: function($message, xhr) {
                $message.html('');
            },
            loadingStart:function($message, xhr){
                $message.html('');
            }
        }
    });
    $('.container-block').css({'visibility':'visible'})
});
{
    itemSelector:'.post-home',   // 子元素id/class, 可留空
    columnCount:4,               // 列数,  纯数字, 可留空
    columnWidth:300              // 列宽度, 纯数字, 可留空
    isResizable: false,          // 自适应浏览器宽度, 默认false
    isAnimated: false,           // 元素动画, 默认false
    Duration: 500,               // 动画时间
    Easing: "swing",             // 动画效果, 配合 jQuery Easing Plugin 使用
    endFn: function(){}          // 回调函数
}
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

占星安啦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值