Least.js是一个jQuery开发的图片画廊,可以用来展示Pininterest风格的图片布局,它将无需的列表项目通过随机方式来加载。如果你点击任何图片的话,并不显示一个更大版本的图片,而是滑动其它的图片,在顶端生成更大的图片,类似Google图片搜索风格。
这个插件使用HTML5/CSS3的特性并且支持响应式的布局。
导入类库
<!-- least.js CSS-file --> <link href="css/least.min.css" rel="stylesheet" /> <!-- jQuery libary --> <script src="http://code.jquery.com/jquery-latest.js" defer="defer"></script> <!-- least.js JS-file --> <script src="js/least.min.js" defer="defer"></script> <!-- Lazyload JS-file --> <script src="js/jquery.lazyload.js" defer="defer"></script>
HTML
<section> <ul id="gallery"> <li id="fullPreview"></li> <li> <a href="img/full/full_1.jpg"></a> <img data-original="img/thumb/thumb_1.jpg" src="img/effects/white.gif" width="240" height="150" alt="Ocean" /> <div class="overLayer"></div> <div class="infoLayer"> <ul> <li> <h2> Ocean </h2> </li> <li> <p> View Picture </p> </li> </ul> </div> <div class="projectInfo"> <strong> Monday, 14th April 2093: </strong> sit amet, consetetur sadipscing elitr, sed diam </div> </li> </ul> </section>