Today,在XX學院的教學視頻中,偶爾看到了Jquery+css實現圖片無縫滾動輪播視頻教程,雖然之前已寫過相似的,可是我感受他學的比較精簡。爲了方便之後作項目時直接拷貝,特意寫出來,順便和你們分享一下javascript
最終實現界面以下:css
頁面加載時,自動輪播,輪播鼠標懸停在整個banner容器的時候,兩邊會顯示向左,向右按鈕,鼠標懸停在中下方索引圓圈的上面,自動跳轉到相應的圖片。java
banner容器裏面包含了圖片列表img,索引圓圈 num,還有按鈕兩個btnjquery
<div class="banner"> <ul class="img"> <li><img src="image/1.jpg" alt=""/></li> <li><img src="image/2.jpg" alt="" /></li> <li><img src="image/3.jpg" alt="" /></li> <li><img src="image/4.jpg" alt="" /></li> </ul> <ul class="num"> </ul> <div class="btn btn_l"><</div> <div class="btn btn_r">></div> </div>
如下是CSS樣式表,直接拷貝,可看到效果,只是沒有使用JS實現輪播事件而已,app
<style type="text/css"> *{ padding:0px; margin:0px;list-style:none;} .banner { width:500px; height:300px; margin:100px auto; border:1px solid #808080; position:relative; overflow:hidden;} .banner .img{width:5000px; position:absolute; left:0px;top:0px;} .banner .img img{width:500px; height:300px;} .banner .img li{float:left;} .banner .num { position:absolute; width:100%; bottom:10px; left:0px; text-align:center; font-size:0px;} .banner .num li { width:10px; height:10px; background-color:#888; border-radius:50%;display:inline-block; margin:0px 3px; cursor:pointer;} .banner .num li.on {background-color: #ff6a00;} .banner .btn {width: 30px;height: 50px;background-color: #808080;opacity: 0.5; filter:alpha(opacity:0.5); position:absolute;top:50%; margin-top:-25px; cursor:pointer; text-align:center; line-height:50px; font-size:40px; color:#fff; font-family:"宋體"; display:none; } .banner .btn_l { left:0px;} .banner .btn_r { right:0px;} .banner:hover .btn { display:block;} </style>
如下是JS各個事件的調用,使用前別忘記引用jquery文件,我這裏引用的是 <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>this
<script type="text/javascript"> $(document).ready(function () { var i = 0; var clone = $(".banner .img li").first().clone();//克隆第一張圖片 $(".banner .img").append(clone);//複製到列表最後 var size = $(".banner .img li").size(); for (var j = 0; j < size-1; j++) { $(".banner .num").append("<li></li>"); } $(".banner .num li").first().addClass("on"); /*自動輪播*/ var t = setInterval(function () { i++; move();},2000); /*鼠標懸停事件*/ $(".banner").hover(function () { clearInterval(t);//鼠標懸停時清除定時器 }, function () { t = setInterval(function () { i++; move(); }, 2000); //鼠標移出時清除定時器 }); /*鼠標滑入原點事件*/ $(".banner .num li").hover(function () { var index = $(this).index();//獲取當前索引值 i = index; $(".banner .img").stop().animate({ left: -index * 500 }, 500); $(this).addClass("on").siblings().removeClass("on"); }); /*向左按鈕*/ $(".banner .btn_l").click(function () { i++; move(); }) /*向右按鈕*/ $(".banner .btn_r").click(function () { i--; move(); }) /*移動事件*/ function move() { if (i == size) { $(".banner .img").css({ left: 0 }); i = 1; } if (i == -1) { $(".banner .img").css({ left: -(size - 1) * 500 }); i = size - 2; } $(".banner .img").stop().animate({ left: -i * 500 }, 500); if (i == size - 1) { $(".banner .num li").eq(0).addClass("on").siblings().removeClass("on"); } else { $(".banner .num li").eq(i).addClass("on").siblings().removeClass("on"); } } }); </script>
拷貝起來很方便即用。spa