仿Google+简洁jQuery轮播图插件
源码介绍
这是一款仿Google+简洁jQuery轮播图插件。该jQuery轮播图插件使用简单,效果类似Google+上的轮播图效果。 在页面中引入jquery和jquery.plusGallery.js,以及jquery.plusGallery.css文件。 该计数器动画特效的HMTL结构如下: 在页面DOM元素加载完毕之后,通过 该jQuery轮播图插件的github地址为:https://github.com/appleonkel/plusGallery简要教程
使用方法
<link rel="stylesheet" href="path/to/jquery.plusGallery.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.plusGallery.js"></script>
HTML结构
<div class="myplusgallery" style="position: relative;">
<div class="img-prev" title="Previous Image">‹</div>
<div class="img-next" title="Next Image">›</div>
<div class="img-overlay">
<p>Pictures from <br>
</div>
<div class="img-slide">
<figure>
<img src="1.jpg" alt="Image Alt" />
</figure>
<figure>
<img src="2.jpg" alt="Image Alt" />
</figure>
<figure>
<img src="3.jpg" alt="Image Alt" />
</figure>
<figure>
<img src="4.jpg" alt="Image Alt" />
</figure>
<figure>
<img src="5.jpg" alt="Image Alt" />
</figure>
</div>
</div>
初始化插件
plusGallery()
方法来初始化该jQuery轮播图插件。
$('.myplusgallery').plusGallery();
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 仿Google+简洁jQuery轮播图插件
发表评论 取消回复