🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

newWaterfall.js is a tiny fast jQuery plugin that creates a responsive, fluid, Pinterest-style waterfall grid layout to present your web content in an unique manner.

grid-layout Pinterest

Documentation

Smile Waterfall

一个基于Jquery开发的瀑布流插件

官网

下载地址

预览

食用方法

<ul id="waterfall">     <li>         <div>             内容1         </div>     </li>     <li>         <div>             内容2         </div>     </li> </ul>  // 执行瀑布流代码 $(document).ready(function () {     $('#waterfall').NewWaterfall({         width: 360,         delay: 100,     }); }); 
  • ul 是瀑布流
  • li 是瀑布流其中一个列表,主要用来做定位
  • li中的div是用来做样式的

效果图

1


You May Also Like