您好,登錄后才能下訂單哦!
本篇內容介紹了“怎么用js點擊按鈕實現多張圖片循環切換”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
具體內容如下
代碼:
<!DOCTYPE html> <html lang="ch"> <head> <meta charset="UTF-8"> <title>點擊按鈕實現多張圖片的循環切換</title> <style type="text/css"> * { margin: 0; padding: 0; } .img-wrapper { width: 520px; height: 520px; background-size: contain; overflow: hidden; margin: 50px auto; background-color: green; } .img-wrapper img{ width: 533px; height: 300px; } .img-wrapper p { text-align: center; height: 20px; line-height: 20px; font-size: 16px; margin-bottom: 10px; margin-top: 8px; } .img-wrapper button { margin: 12px 93px; font-size: 18px; } </style> <script type="text/javascript"> window.onload = function () { let prev = document.getElementById("prev"); let next = document.getElementById("next"); let img = document.getElementsByTagName("img")[0]; let info = document.getElementById("info"); //創建一個數組存儲照片的路徑 let imgArr = ["img/111.jpg", "img/222.jpg", "img/333.jpg", "img/444.jpg", "img/555.jpg", "img/666.jpg"]; let index = 0; info.innerText = "一共有" + imgArr.length + "張照片,現在是第" + (index + 1) + "張"; prev.onclick = function () { index--; prev.style.backgroundColor="#ff4c31"; if (index < 0) { index = imgArr.length - 1; } img.src = imgArr[index]; info.innerText = "一共有" + imgArr.length + "張照片,現在是第" + (index + 1) + "張"; }; next.onclick = function () { index++; next.style.backgroundColor="#ff4c31"; if (index > imgArr.length - 1) { index = 0; } img.src = imgArr[index]; info.innerText = "一共有" + imgArr.length + "張照片,現在是第" + (index + 1) + "張"; }; }; </script> </head> <body> <div class="img-wrapper"> <p id="info"></p> <img src="img/111.jpg"> <button id="prev">上一張</button> <button id="next">下一張</button> </div> </body> </html>
效果:
“怎么用js點擊按鈕實現多張圖片循環切換”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。