您好,登錄后才能下訂單哦!
小編給大家分享一下JS實現圖片切換特效的方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
具體內容如下
知識點:
1.window.onload網頁全部加載完后再執行
2.獲取元素 設置屬性
3.臨界情況判斷
運行效果:
點擊上一張下一章切換圖片
代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <style> #box{ width: 1200px; margin: 0 auto; } </style> <body> <div id="box"> <img id="icon" src="images/阿魯1.gif" alt=""> <p></p> <button id="prep">上一張</button> <button id="next">下一張</button> </div> <script> window.onload = function (ev) { // 1. 獲取標簽 var prep = document.getElementById('prep'); var next = document.getElementById('next'); var icon = document.getElementById('icon'); // 2. 點擊 var currentIndex = 1, minIndex=1, maxIndex=10; prep.onclick = function (ev1) { if (currentIndex === minIndex){ currentIndex = maxIndex; }else{ currentIndex--; } icon.setAttribute('src','images/阿魯'+ currentIndex +'.gif'); }; next.onclick = function (ev1) { if (currentIndex === maxIndex){ currentIndex = minIndex; }else { currentIndex++; } icon.setAttribute('src','images/阿魯'+ currentIndex +'.gif'); } } </script> </body> </html>
看完了這篇文章,相信你對“JS實現圖片切換特效的方法”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。