小編給大家分享一下如何使用javascript實(shí)現(xiàn)圖片輪播,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)公司于2013年開(kāi)始,先為新民等服務(wù)建站,新民等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為新民企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
因?yàn)樽约菏切率肿詫W(xué)不久,所以代碼有很多不規(guī)范的地方,請(qǐng)?jiān)彙?/p>
html部分代碼:
<div id="head"> <button id="prev" onmousedown="p()" onmouseout="cal()"><</button> <img height="500px" width="500px" src="image/dell.jpg" alt="Dell"> <button id="next" onmousedown="n()" onmouseout="cal()">></button> </div>
CSS部分代碼:
<style type="text/css"> * { margin: 0; padding: 0; } #head { width:800px; height:500px; border-radius: 5px; border: 2px solid pink; margin: 200px auto; text-align: center; } #prev { width: 30px; height: 30px; border: 0px; border-radius: 5px; background-color:white; color: black; position: relative; margin-top: 250px; float: left; } #next { width: 30px; height: 30px; border: 0px; border-radius: 5px; background-color:white; color: black; position: relative; margin-top: 250px; float: right; } </style>
javascript部分代碼:
<script> var prev=document.getElementById("prev"); var next=document.getElementById("next"); var img=document.getElementsByTagName("img")[0]; var imgArr=["image/dell.jpg/dell.jpg","image/dell.jpg/sony.jpg","image/dell.jpg/費(fèi)列羅.jpg","image/dell.jpg/Nike.jpg"]; var index=0; //點(diǎn)擊左箭頭,切換上一張 function p(){ if(index==0) { index=imgArr.length; } index--; img.src=imgArr[index]; } //點(diǎn)擊右箭頭,切換下一張 function n(){ if(index==imgArr.length) { index=0; } img.src=imgArr[index]; index++; } //設(shè)置自動(dòng)播放 time=setInterval("p()",2000); //鼠標(biāo)移入箭頭內(nèi),停止自動(dòng)播放 function cal(){ clearInterval(time); } </script>
以上是“如何使用javascript實(shí)現(xiàn)圖片輪播”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前標(biāo)題:如何使用javascript實(shí)現(xiàn)圖片輪播
標(biāo)題來(lái)源:http://m.newbst.com/article32/gciesc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、商城網(wǎng)站、電子商務(wù)、網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站導(dǎo)航、手機(jī)網(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)