jQuery 图片库插件:simpleGal

jopen 11年前

simpleGal 是一款 jQuery 简单的图片相册插件,它虽然没有非常酷炫的效果,但它非常小巧,仅有 1KB,使用方法也很简单。如果你不需要花哨的效果,仅仅是需要一个简单纯粹的图片相册插件,那 simpleGal 是个不错的选择。

<div class="thumbnails">    <a href="path/to/larger-image.jpg">      <img src="path/to/thumbnail.jpg" alt="Thumbnail">    </a>    <a href="path/to/larger-image.jpg">      <img src="path/to/thumbnail.jpg" alt="Thumbnail">    </a>    <a href="path/to/larger-image.jpg">      <img src="path/to/thumbnail.jpg" alt="Thumbnail">    </a>  </div>
$(".thumbnails").simpleGal({    mainImage: ".your-main-image-class-or-ID"  });
示例:http://steverydz.github.com/simpleGal/demo

项目主页:http://www.open-open.com/lib/view/home/1389504381851