0
我想通過「上一個」和「下一個」鏈接/按鈕在數組中循環照片。我一直在我的網站上做得很好,html
和css
,但是JavaScript
真的讓我感到厭煩。Javascript照片提前太多
我還在學習,如果任何人都可以幫忙,那會很棒。這個想法是能夠添加無限數量的照片到畫廊。我到目前爲止的代碼如下,但它似乎並沒有工作。我試圖獲得它,因此點擊最後一張圖片上的「下一張」按鈕會使我回到第一張圖片,並且第一張圖片上的「上一張」按鈕將帶我到最後一張。
var counter = 0;
var srcArray = ["photos/0.jpg", "photos/1.jpg", "photos/2.jpg"];
prev.onclick = function()
{
document.getElementById("currentImage").src = srcArray[--counter];
}
next.onclick = function()
{
document.getElementById("currentImage").src = srcArray[++counter];
}
if(counter <= 0)
{
counter = 2;
document.getElementById("currentImage").src = "photos/2.jpg"
}
else if(counter >= 2)
{
counter = 0;
document.getElementById("currentImage").src = "photos/0.jpg"
};
<img src= "photos/0.jpg" id="currentImage" height="288"/>
<p>
<button id= "prev" class="portfolioNavigation">Previous</button>
<button id= "next" class="portfolioNavigation">Next</button>
</p>