轮播效果汇总

1 带滑动的轮播效果:
<div id="cj_slide" class="cj_slide">
  <div class="bd"></div>
  <div class="hd">
     <ul>
     </ul>
  </div>
  </div>
</div>
<script>
    TouchSlide({
                    slideCell:"#cj_slide",
                    titCell:".hd ul", //开启自动分页 autoPage:true ,此时设置 titCell 为导航元素包裹层
                    mainCell:".bd ul",
                    effect:"leftLoop",
                    delayTime:1000,
                    interTime:5000,
                    autoPage:true,//自动分页
                    autoPlay:false //自动播放
                });
</script>
原文地址:https://www.cnblogs.com/hilxj/p/6805952.html