本文實例講述了JS實現焦點圖輪播效果的方法。分享給大家供大家參考,具體如下:
效果圖如下:
一、所用到的知識點
1.DOM操作
2.定時器
3.事件運用
4.Js動畫
5.函數遞歸
6.無限滾動大法
二、結構和樣式
<div id="banner" class="banner"> <ul id="list-banner" class="list-banner fn-clear" style="left:-624px;"> <li><a href="#"><img src="images/banner4.jpg" width="624" height="200" alt="" title="" /></a></li> <li><a href="#"><img src="images/banner1.jpg" width="624" height="200" alt="" title="" /></a></li> <li><a href="#"><img src="images/banner2.jpg" width="624" height="200" alt="" title="" /></a></li> <li><a href="#"><img src="images/banner3.jpg" width="624" height="200" alt="" title="" /></a></li> <li><a href="#"><img src="images/banner4.jpg" width="624" height="200" alt="" title="" /></a></li> <li><a href="#"><img src="images/banner1.jpg" width="624" height="200" alt="" title="" /></a></li> </ul> <div class="list-num-wp"> <div id="list-num" class="list-num fn-clear"> <a href="#" class="hover"></a> <a href="#"></a> <a href="#"></a> <a href="#"></a> </div> </div> <div class="left"> <a id="left" href="#"></a> </div> <div class="right"> <a id="right" href="#"></a> </div> </div>
.banner{position:relative;width:624px;height:200px;overflow:hidden;} .banner .list-banner{position:absolute;width:5000px;} .banner .list-banner li{float:left;width:624px;height:200px;} .banner .list-num-wp{position:absolute;bottom:7px;width:624px;height:11px;} .banner .list-num{width:100px;margin:0 auto;} .banner .list-num a{display:inline;float:left;width:11px;height:11px;margin:0 7px; background:url(../images/list-num.png) no-repeat;} .banner .list-num a:hover{background:url(../images/list-num-hover.png));} .banner .list-num a.hover{background:url(../images/list-num-hover.png);} .banner .left a{display:block;position:absolute;width:49px;height:49px;top:75px;left:4px;background:url(../images/arrow.gif) 0 0;filter: Alpha(opacity=50);-moz-opacity:.5;opacity:0.5;} .banner .right a{display:block;position:absolute;width:49px;height:49px;top:75px;right:4px;background:url(../images/arrow.gif) 0 -49px;filter: Alpha(opacity=50);-moz-opacity:.5;opacity:0.5;}
三、腳本思路
1.先左右按鈕功能
window.onload=function(){ var prev=document.getElementById("left"); var next=document.getElementById("right"); var list_banner=document.getElementById("list-banner"); next.onclick=function(){ list_banner.style.left=parseInt(list_banner.style.left)-624+'px'; //注:html上的ul要加行間樣式left:0;,否則這裡動不起來 } prev.onclick=function(){ list_banner.style.left=parseInt(list_banner.style.left)+624+'px'; } }
2.左右按鈕點擊的兩句話很像,封裝成函數
function animate(offset){ list_banner.style.left=parseInt(list_banner.style.left)+offset+'px'; } next.onclick=function(){ animate(-624); } prev.onclick=function(){ animate(624); }
3.無限滾動
①假圖的做法
即圖片為412341,小於最後一張位置的時候,回到第一張的位置,大於 第一張位置的時候,拉到最後一張的位置
function animate(offset){ var newLeft=parseInt(list_banner.style.left)+offset; list_banner.style.left=newLeft+'px'; if(newLeft<-2496){ list_banner.style.left=-624+"px"; } if(newLeft>-624){ list_banner.style.left=-2496+"px"; } }
4.小圓點跟著左右按鈕切換
var index=1; function showDot(){ for(var i=0;i<list_num.length;i++){ list_num[i].className=""; } list_num[index-1].className="hover"; } next.onclick=function(){ animate(-624); index++; if(index>4){ index=1; } showDot(); } prev.onclick=function(){ animate(624); index--; if(index<1){ index=4; } showDot(); }
5.點擊小圓點圖片滾動及小圓點切換
for(var i=0;i<list_num.length;i++){ list_num[i].onclick=function(){ if(this.className=="hover"){ return; } var myIndex=parseInt(this.getAttribute("index")); var offset=-624*(myIndex-index); index=myIndex; animate(offset); showDot(); } }
①點自己的時候不執行下列代碼
②
<div class="list-num-wp"> <div id="list-num" class="list-num fn-clear"> <a index="1" href="#" class="hover"></a> <a index="2" href="#"></a> <a index="3" href="#"></a> <a index="4" href="#"></a> </div> </div>
關鍵是要取到點擊的是第幾張圖片,不能直接var myIndex=this.index;因為index是自定義屬性,dom自帶屬性可以通過點來獲取,自定義屬性不行,.getAttribute()既可以獲取自定義屬性,又可以獲取dom自帶屬性
③更新index值,index=myIndex;
6.動畫函數(有一個漸變的運動過程)
function animate(offset){ animated=true; var newLeft=parseInt(list_banner.style.left)+offset; var time=300; //位移總時間 var interval=30; //位移間隔時間 var speed=offset/(time/interval); //每次移動距離 speed=speed>0?Math.ceil(speed):Math.floor(speed); //可能存在小數,取整 function go(){ if((speed < 0 && parseInt(list_banner.style.left)>newLeft)||(speed>0&&parseInt(list_banner.style.left)<newLeft)){ //newLeft目標值 list_banner.style.left=parseInt(list_banner.style.left)+speed+'px'; setTimeout(go,interval); //不止做一次運動(go函數),每隔30毫秒前進一下 } else{ animated=false; list_banner.style.left=newLeft+'px'; if(newLeft<-2496){ list_banner.style.left=-624+"px"; } if(newLeft>-624){ list_banner.style.left=-2496+"px"; } } } go(); } next.onclick=function(){ if(!animated){ index++; } if(index>4){ index=1; } showDot(); if(!animated){ animate(-624); } } prev.onclick=function(){ if(!animated){ index--; } if(index<1){ index=4; } showDot(); if(!animated){ animate(624); } } for(var i=0;i<list_num.length;i++){ list_num[i].onclick=function(){ if(this.className=="hover"){ return; } var myIndex=parseInt(this.getAttribute("index")); var offset=-624*(myIndex-index); index=myIndex; showDot(); if(!animated){ animate(offset); } } }
①一個函數不停地在一個條件後調用自身,這種做法就叫做遞歸,這裡通過遞歸可以實現animate這個函數的動畫效果
②不停點就意味著不停調用animate函數,可能會造成卡頓,圖片亂刷,需要優化,引進變量animated
7.自動播放
function autoplay(){ timer=setInterval(function(){ next.onclick(); },1000) } function stopautoplay(){ clearInterval(timer); } banner.onmouseover=stopautoplay; banner.onmouseout=autoplay; autoplay();
setTimeout只執行一次,之前一直執行,是因為遞歸
setInterval是每隔多少時間
8.假圖的優化
實際運用中,圖片肯定是按順序存放,所以假圖最好通過js來生成,而不是本身寫在html上
var img_first=list_banner.getElementsByTagName("li")[0]; var img_last=list_banner.getElementsByTagName("li")[3]; list_banner.appendChild(img_first.cloneNode(true)); list_banner.insertBefore(img_last.cloneNode(true),list_banner.getElementsByTagName("li")[0]);
appendChild是將新的節點添加到目標的最後一個子節點之後
insertBefore是將新的節點添加到已存在的子節點之前
cloneNode方法,true表示深克隆,false表示淺克隆,深克隆是將標簽和標簽裡的內容都復制過來,而淺克隆不復制內容
更多關於JavaScript相關內容感興趣的讀者可查看本站專題:《JavaScript切換特效與技巧總結》、《JavaScript查找算法技巧總結》、《JavaScript動畫特效與技巧匯總》、《JavaScript錯誤與調試技巧總結》、《JavaScript數據結構與算法技巧總結》、《JavaScript遍歷算法與技巧總結》及《JavaScript數學運算用法總結》
希望本文所述對大家JavaScript程序設計有所幫助。