用JS實現輪播圖效果(二),js

來源:互聯網
上載者:User

用JS實現輪播圖效果(二),js

在上一篇用JS實現圖片輪播效果代碼(一)的基礎上,增加了左右箭頭的響應事件,實現了點擊左右箭頭也可以讓圖片滾動:

js代碼如下:

window.onload = function(){//輪播初始化var lunbo = document.getElementById('content');var imgs = lunbo.getElementsByTagName('img'); var uls = lunbo.getElementsByTagName('ul');var lis = lunbo.getElementsByTagName('li');var next = document.getElementById('next');var prev = document.getElementById('prev');var item = 0;//初始狀態下,一個圓圈為高亮模式lis[0].style.fontSize = '26px';lis[0].style.color = '#fff';imgs[0].style.display = 'block';//定義一個全域變數,用來進行自動輪播圖片順序的變化var pic_index = 1;//自動輪播.使用pic_time記錄播放,可以隨時使用clearInterval()清除掉。var pic_time = setInterval(autobofang,1000);//自動播放的事件處理function autobofang(){if(pic_index >= lis.length){pic_index = 0;}picChange(pic_index);pic_index++;}//手動輪播for(var i=0;i<lis.length;i++){ lis[i].addEventListener("mouseover",change,false);}function change(event){ var event=event||window.event;var target=event.target||event.srcElement; var children = target.parentNode.children; for(var i=0;i<children.length;i++){if(target == children[i]){ picChange(i); } }} //圖片切換函數function picChange(i){ //讓所有圖片都不顯示,所有圓圈都為普通樣式 for(var j=0;j<imgs.length;j++){ imgs[j].style.display = 'none'; lis[j].style.fontSize = '24px';lis[j].style.color = '#999';}//讓選中的索引的圖片顯示,對應的圓圈高亮 imgs[i].style.display = 'block'; lis[i].style.fontSize = '26px';lis[i].style.color = '#fff'; }//當滑鼠移近圖片地區內,自動播放停止lunbo.addEventListener("mouseover",function(){clearInterval(pic_time);},false);//當滑鼠移出圖片地區內,自動播放繼續lunbo.addEventListener("mouseout",function(){pic_time = setInterval(autobofang,1000); },false);//後退箭頭點擊事件,圖片會跟著點擊事件不斷變化 next.addEventListener("click",movenext,false);function movenext(){if(item == 2){item=0;}else{item+=1;}picChange(item);}prev.addEventListener("click",moveprev,false);function moveprev(){if(item == 0){item=2;}else{item-=1;} picChange(item);}}

:滑鼠划過箭頭的

當滑鼠點擊到箭頭,圖片會跟著變化,下面的小圓圈也會跟著顯示對應圖片的高亮效果

總結:

基本輪播效果已經實現,後期需要做的事:是對代碼要進行精簡,封裝,提高運行效率。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.