JQuery和html+css實(shí)現(xiàn)帶小圓點(diǎn)和左右按鈕的輪播圖實(shí)例
是的!你沒看錯(cuò)!還是輪播圖。這次的JQuery的喲?。?/p>
CSS代碼:
/*輪播圖 左右按鈕 小白點(diǎn)*/ #second_div{ margin-top: 160px; } .img_box{ overflow: hidden; width:100%; height:420px; border:1px solid; position:relative; } .img_box img{ width:100%; position:absolute; } .ul5{ list-style: none; position:absolute; left:580px; top:565px; } .ul5 li{ float:left; margin-left:20px; width:40px; height:5px; border:0px; background:lawngreen; } .d1,.d2{ width:50px; height:60px; background-color: rgba(10,10,10,0.5); text-align: center; font-size:26px; font-weight: 800px; line-height:60px; cursor: pointer; } .d1{ position:absolute; top:373px; left:25px; } .d2{ position:absolute; top:373px; left:1445px; }
HTML代碼:
<!-- 輪播圖 --> <div id="second_div"> <div class="img_box"> <img src="img/ban1.jpg"> <img src="img/ban2.jpg"> <img src="img/ban3.jpg"> <img src="img/ban4.png"> </div> <ul class="ul5"> <li></li> <li></li> <li></li> <li></li> </ul> <div class="d1"><</div> <div class="d2">></div> </div>
js代碼:
<script type="text/javascript"> $(document).ready(function(){ //搜索按鈕 $("#ss").click(function(){ var new_li = $("<li>"+ $("#skuang").val() +"</li>"); $("#d1 ul").append(new_li); $("#d1").hide(); $("#skuang").val(""); }) $("#skuang").focus(function(){ $("#d1").css("display","block"); }); $("#skuang").blur(); $("#qingch").click(function(){ $("#d1 li:gt(0)").remove(); $("#d1").hide(); }); //輪播圖 var img=$(".img_box img"); var li=$(".ul5 li"); var divW=$(".img_box").width(); var len=$(".img_box img").length; img.css("left",divW); img.eq(0).css("left",0); li.eq(0).css("background","red"); var index=0; var next=0; function show(){ next++; if(next==len){ next=0; } img.eq(next).css("left",divW); img.eq(index).animate({"left":-divW}); img.eq(next).animate({"left":0}); li.eq(next).css("background","red"); li.eq(index).css("background","lawngreen"); index=next; } t=setInterval(show,2000); function show1(){ next--; if(next==-1){ next=len-1; } img.eq(next).css("left",-divW); img.eq(index).animate({"left":divW}); img.eq(next).animate({"left":0}); li.eq(next).css("background","red"); li.eq(index).css("background","lawngreen"); index=next; } img.hover(function(){ clearInterval(t); },function(){ t=setInterval(show,2000); }) //左右按鈕 $(".d2").mousedown(function(){ clearInterval(t); show(); }) $(".d2").mousedown(function(){ t=setInterval(show,2000); }) $(".d1").mousedown(function(){ clearInterval(t); show1(); }) $(".d1").mousedown(function(){ t=setInterval(show,2000); }) //小白點(diǎn) 點(diǎn)擊 li.mousedown(function(){ num=$(this).index(); if(num==next){ return; }else if(num<next){ clearInterval(t); img.eq(num).css("left",-divW); img.eq(index).animate({"left":divW}); img.eq(num).animate({"left":0}); li.eq(num).css("background","red"); li.eq(index).css("background","lawngreen"); index=num; next=num; }else if(num>next){ clearInterval(t); img.eq(num).css("left",divW); img.eq(index).animate({"left":-divW}); img.eq(num).animate({"left":0}); li.eq(num).css("background","red"); li.eq(index).css("background","lawngreen"); index=num; next=num; } }) li.mouseup(function(){ t=setInterval(show,2000); }) }) </script>
以上這篇JQuery和html+css實(shí)現(xiàn)帶小圓點(diǎn)和左右按鈕的輪播圖實(shí)例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
jQuery構(gòu)造函數(shù)init參數(shù)分析
這篇文章主要介紹了jQuery構(gòu)造函數(shù)init參數(shù)分析,今天主要是分析一下jQuery中init選擇器構(gòu)造函數(shù),處理選擇器函數(shù)中的參數(shù),感興趣的朋友可以了解下2015-05-05基于JQuery實(shí)現(xiàn)滾動(dòng)到頁面底端時(shí)自動(dòng)加載更多信息
這篇文章主要介紹了基于JQuery實(shí)現(xiàn)滾動(dòng)到頁面底端時(shí)自動(dòng)加載更多信息,類似微博,新浪新聞的評(píng)論等,都采用了這方法,需要的朋友可以參考下2014-01-01在jQuery1.5中使用deferred對(duì)象 著放大鏡看Promise
在那篇經(jīng)典的關(guān)于jQuery1.5中Deferred使用方法介紹的文章中(譯文見這里),有下面一段描述2011-03-03當(dāng)鼠標(biāo)移動(dòng)到圖片上時(shí)跟隨鼠標(biāo)顯示放大的圖片效果
當(dāng)鼠標(biāo)移動(dòng)到圖片上時(shí),跟隨鼠標(biāo)顯示放大顯示的圖片,具體效果情況截圖,另附送源碼,感興趣的朋友可以學(xué)習(xí)下哈2013-06-06jquery 屏蔽一個(gè)區(qū)域內(nèi)的所有元素,禁止輸入
有時(shí)候,需要屏蔽一個(gè)div中所有的input類型,使用jquery很簡單有效的完成。2009-10-10jQuery基于$.ajax設(shè)置移動(dòng)端click超時(shí)處理方法
這篇文章主要介紹了jQuery基于$.ajax設(shè)置移動(dòng)端click超時(shí)處理方法,分析了click事件與touchstart事件的原理與處理技巧,需要的朋友可以參考下2016-05-05

關(guān)于setInterval、setTimeout在jQuery中的使用注意事項(xiàng)

jQuery實(shí)現(xiàn)簡單的回到頂部totop功能示例