我創建了這個網站,它使用一個簡單的javascript函數來顯示基於用戶鼠標移動或單擊右側編號框的圖像。現在經過測試,已經確定應該在其上添加自動幻燈片放映,以便在幾秒鐘後顯示下一張圖片。Javascript自動下一張圖片
http://www.philippedollo.com/photo/fineart/f_amw.htm
有沒有一種方法可以輕鬆地修改這個代碼,使其極易發生? -
function showPic(whichpic) {
if (document.getElementById) {
document.getElementById('placeholder').src = whichpic.href;
if (whichpic.title) {
document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
} else {
document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
}
return false;
} else {
return true;
}
}
嘗試使用jQuery,它會更容易。 – 2011-06-06 13:24:29