本篇文章給大家分享的是有關(guān)使用JS實(shí)現(xiàn)簡(jiǎn)易圖片自動(dòng)輪播,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)孝昌免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上1000+企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。<!doctype html> <html> <head> <meta charset="utf-8" /> <title>自動(dòng)播放選項(xiàng)卡</title> <style> *{ margin:0; padding:0; } .box{ width:600px; height:400px; border:1px solid red; margin:100px auto; position:relative; } a{ font-size:40px; position:absolute; text-decoration:none; top:-10px; } #prev{ left:0; } #next{ right:0; } #pos{ margin-left:30px; } input{ width:90px; height:40px; float:left; outline:none; border:0; } .box div{ width:600px; height:400px; background:skyblue; text-align:center; line-height:300px; font-size:100px; font-weight:bold; text-shadow:5px 5px 5px #f90; display:none; } .box .show{ display:block; } .box .active{ width:88px; color:#fff; font-size:18px; font-weight:bold; background:#f90; } </style> <script> window.onload = function() { var oBox = document.getElementById('box'); var oPrev = document.getElementById('prev'); var oNext = document.getElementById('next'); var aBtn = document.getElementsByTagName('input'); var aDiv = oBox.getElementsByTagName('div'); var oNow = 0; for (var i=0;i<aBtn.length;i++) { aBtn[i].dataIndex = i; aBtn[i].onclick = function(){ oNow = this.dataIndex; for (var i=0;i<aBtn.length;i++) { aBtn[i].className = ''; aDiv[i].className = ''; } this.className = 'active'; aDiv[this.dataIndex].className = 'show'; } } oPrev.onclick = prev; oNext.onclick = next; //實(shí)現(xiàn)自動(dòng)播放 var timer = setInterval(next , 1000); oBox.onmouseover = function() { clearInterval(timer); } oBox.onmouseout = function() { timer = setInterval(next , 1000); } function prev() { oNow--; if (oNow < 0) { oNow = aBtn.length-1; } tab(); } function next() { oNow++; if (oNow > aBtn.length-1) { oNow = 0; } tab(); } function tab() { for (var i=0;i<aBtn.length;i++) { aBtn[i].className = ''; aDiv[i].className = ''; } aBtn[oNow].className = 'active'; aDiv[oNow].className = 'show'; } } </script> </head> <body> <div class="box" id="box"> <a href="javascript:;" id="prev">☜</a> <a href="javascript:;" id="next">☞</a> <input type="button" name="" value="亞洲" class="active" id="pos"/> <input type="button" name="" value="歐洲" /> <input type="button" name="" value="非洲" /> <input type="button" name="" value="北美洲" /> <input type="button" name="" value="南美洲" /> <input type="button" name="" value="大洋洲" /> <div class="show">亞洲</div> <div>歐洲</div> <div>非洲</div> <div>北美洲</div> <div>南美洲</div> <div>大洋洲</div> </div> </body> </html>
當(dāng)前標(biāo)題:使用JS實(shí)現(xiàn)簡(jiǎn)易圖片自動(dòng)輪播-創(chuàng)新互聯(lián)
當(dāng)前路徑:http://jinyejixie.com/article14/dipgge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、網(wǎng)站收錄、網(wǎng)站導(dǎo)航、品牌網(wǎng)站建設(shè)、微信小程序、營(yíng)銷型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容