可以通過以下的代碼實現圖片數組中圖片的切換效果:
// HTML結構
/*
<div id="slider">
<img id="image" src="image1.jpg">
</div>
<button onclick="previousImage()">上一張</button>
<button onclick="nextImage()">下一張</button>
*/
// JavaScript代碼
var images = ["image1.jpg", "image2.jpg", "image3.jpg"]; // 圖片數組
var currentIndex = 0; // 當前顯示的圖片索引
function previousImage() {
currentIndex--;
if (currentIndex < 0) {
currentIndex = images.length - 1;
}
document.getElementById("image").src = images[currentIndex];
}
function nextImage() {
currentIndex++;
if (currentIndex >= images.length) {
currentIndex = 0;
}
document.getElementById("image").src = images[currentIndex];
}
上述代碼中,通過一個圖片數組來存儲所有圖片的路徑,然后使用一個currentIndex
變量來記錄當前顯示的圖片索引。當點擊上一張按鈕時,currentIndex
減1,如果currentIndex
小于0,則將其設置為數組的最后一個元素的索引,然后將當前顯示的圖片的src
屬性設置為images[currentIndex]
。當點擊下一張按鈕時,currentIndex
加1,如果currentIndex
大于等于數組的長度,則將其設置為0,然后將當前顯示的圖片的src
屬性設置為images[currentIndex]
。
這樣就實現了圖片數組中圖片的切換效果。