投稿 搜索

热搜词

热门文章

当前位置: 站长天下 / 瀑布流提示框 / 仿Pinterest的网格瀑布流插件
仿Pinterest的网格瀑布流插件
标签:

插件介绍

    Bootstrap-waterfall是一款基于Bootstrap仿Pinterest网站的网格瀑布流插件。该瀑布流插件支持响应式布局,使用简单,非常实用。

    浏览器兼容性

    浏览器兼容性
    时间:2018-05-01
    阅读:

仿Pinterest的网格瀑布流插件

简要教程

Bootstrap-waterfall是一款基于Bootstrap仿Pinterest网站的网格瀑布流插件。该瀑布流插件支持响应式布局,使用简单,非常实用。


安装

可以通过npm和bower来安装Bootstrap-waterfall插件。

$ npm install bootstrap-waterfall
$ bower install bootstrap-waterfall

使用方法

在页面中引入bootstrap相关文件,以及jquery和bootstrap-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>


上一篇:没有了