🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
SuperSlide是做企业站最常见的一个jQuery插件。SuperSlide功能列表如下: ![SuperSlide功能列表](https://box.kancloud.cn/2016-06-14_575f6707d9e12.png) 官网地址:[SuperSlide官网](http://www.superslide2.com/index.html) # html结构 ~~~ <div class="Slide"> <div class="hd"> <ul> <li></li> <li></li> <li></li> </ul> <a href="javascript:;" class="prev">prev</a> <a href="javascript:;" class="next">next</a> </div> <div class="bd"> <ul> <Li></Li> <Li></Li> <Li></Li> </ul> </div> </div> ~~~ # js部分 ~~~ $(".Slide").slide({// li为基本单位 mainCell: ".bd ul",// li容器 titCell: ".page ul",// 分页容器 autoPage: true,// 自动分页 autoPlay: true,// 自动动画 vis: 3,//可见数量 effect: "left",//动画效果 scroll: 3,//滚动数量 interTime: 8000//间隔时间 }) ~~~ 更多API参数,见:[SuperSlide参数说明](http://www.superslide2.com/param.html) * * * * * css样式这里就不贴了,更详细的使用说明,见[官方如何使用SuperSlide](http://www.superslide2.com/howToUse.html)