這次帶給大家JS輕鬆實現輪播圖,JS輕鬆實現輪播圖的注意事項有哪些,下面就是實戰案例,一起來看一下。
想法:
#
1.首先要有個盛放圖片的容器,設定為單幅圖片的寬高,且overflow:hidden,這樣保證每次可以只顯示一個圖片
2、Container內有個放圖片的list進行position的定位,其中的圖片採用float的方式,同時當圖片進行輪播時,改變list的Left值使得其顯示的圖片發生變化。
3、圖片的輪播使用定時器,透過定時器改變list的Left值是的圖片循環展示
4、當滑鼠滑動到圖片上時,清除定時器,圖片停止輪播,當滑鼠移出時繼續進行輪播
5、圖片上有一組小圓點用於與當前顯示的圖片相對應,同時可以透過點擊的方式查看對應的圖片
6、圖片可以透過點擊進行左右滑動顯示
程式碼:
<!DOCTYPE html> <htmllang="en"> <head> <metacharset="UTF-8"> <title>轮播图</title> <styletype="text/css"> .container{ margin:0 auto; width:600px; height:400px; position: relative; overflow: hidden; border:4px solid gray; box-shadow: 3px 3px 5px gray; border-radius:10px; } .list{ width:4200px; height:400px; position: absolute; top:0px; } img{ float:left; width:600px; height:400px; } .dots{ position: absolute; left:40%; bottom:30px; list-style: none; } .dots li{ float:left; width:8px; height:8px; border-radius: 50%; background: gray; margin-left:5px } .dots .active{ background: white; } .pre,.next{ position: absolute; top:40%; font-size:40px; color:white; text-align:center; background: rgba(128,128,128,0.5); /* display:none;*/ } .pre{ left:30px; } .next{ right:30px; } </style> </head> <body> <pclass="container"> <pclass="list"style=" left:-600px;"> <imgsrc="img/5.jpg"> <imgsrc="img/1.jpg"> <imgsrc="img/2.jpg"> <imgsrc="img/3.jpg"> <imgsrc="img/4.jpg"> <imgsrc="img/5.jpg"> <imgsrc="img/1.jpg"> </p> <ulclass="dots"> <liindex=1class="active dot"></li> <liindex=2class="dot"></li> <liindex=3class="dot"></li> <liindex=4class="dot"></li> <liindex=5class="dot"></li> </ul> <pclass="pre"><</p> <pclass="next">></p> </p> <scripttype="text/javascript"> var index=1,timer; function init(){ eventBind(); autoPlay(); } init(); function autoPlay(){ timer =setInterval(function () { animation(-600); dotIndex(true); },1000) } function stopAutoPlay() { clearInterval(timer); } function dotIndex(add){ if(add){ index++; } else{ index--; } if(index>5){ index = 1; } if(index<1){ index=5; } dotActive(); } function dotActive() { vardots=document.getElementsByClassName("dot"); varlen=dots.length; for(vari=0;i<len ;i++){ dots[i].className="dot"; } for(vari=0;i<len;i++){ /*此处可以不用parseInt,当不用全等时*/ if(index === parseInt(dots[i].getAttribute("index"))){ dots[i].className="dot active"; } } } function eventBind(){ /*点的点击事件*/ vardots=document.getElementsByClassName("dot"); varlen=dots.length; for(vari=0;i<len;i++){ (function(j){ dots[j].onclick=function(e){ varind=parseInt(dots[j].getAttribute("index")); animation((index - ind)*(-600));/*显示点击的图片*/ index= ind; dotActive(); } })(i) } /*容器的hover事件*/ varcon=document.getElementsByClassName("container")[0]; /*鼠标移动到容器上时,停止制动滑动,离开时继续滚动*/ con.onmouseover=function(e) { stopAutoPlay(); } con.onmouseout=function(e){ autoPlay(); } /*箭头事件的绑定*/ varpre=document.getElementsByClassName("pre")[0]; varnext=document.getElementsByClassName("next")[0]; pre.onclick=function(e) { dotIndex(false); animation(600); } next.onclick=function(e) { dotIndex(true); animation(-600); } } function animation(offset){ varlists=document.getElementsByClassName("list")[0]; varleft=parseInt(lists.style.left.slice(0,lists.style.left.indexOf("p"))) + offset; if(left<-3000){ lists.style.left="-600px"; } else if(left>-600){ lists.style.left = "-3000px"; } else{ lists.style.left = left+"px"; } } </script> </body> </html>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是JS輕鬆實現輪播圖的詳細內容。更多資訊請關注PHP中文網其他相關文章!