1
我如何在asp.net中使用JavaScript更改圖像?我希望這些在一段時間(比如15秒)之後會自動改變(沒有點擊刷新/ F5按鈕),只需在asp.net中使用java腳本。有沒有任何JS可以幫助我做到這一點。如何在使用Javascript的橫幅中旋轉圖像?
感謝
我如何在asp.net中使用JavaScript更改圖像?我希望這些在一段時間(比如15秒)之後會自動改變(沒有點擊刷新/ F5按鈕),只需在asp.net中使用java腳本。有沒有任何JS可以幫助我做到這一點。如何在使用Javascript的橫幅中旋轉圖像?
感謝
嘗試這樣的事情,這樣的例子設置了頁面的背景圖像:
var gSlideshowInterval = 10; /* the interval in seconds */
var gImageCapableBrowser;
var gCurrentImage = 0; /* the default image in the array of images */
var randombgs=["images/body/clarinet.jpg", "images/body/jazzsax.jpg", "images/body/composing.jpg", "images/body/classical-music.jpg"];
function canManipulateImages() {
if (document.images)
return true;
else
return false;
}
function loadSlide(imageURL) {
document.body.style.backgroundImage='url(\''+ imageURL + '\')'; /* change this line to be the actual image you want to change i.e. document.getElementbyId('MyImage').src or something similar */
return true;
}
function nextSlide() {
gCurrentImage = Math.floor(Math.random()*randombgs.length);
loadSlide(randombgs[gCurrentImage]);
}
gImageCapableBrowser = canManipulateImages();
setInterval("nextSlide()",gSlideshowInterval * 1000);
感謝您的及時答覆,但我應該在哪裏調用從這個JS? – 2009-12-23 09:41:41
+1用於添加代碼 – 2009-12-23 10:18:41
如果在頭部添加
以前的答案正確的,但我應該做財產以後它其中:
通話方法在身體上,然後
讓函數調用它自我,然後你有一個無限循環的旋轉
,這裏是HTML源代碼
來源
2009-12-23 10:15:28 Hiyasat
+1用於自動化實際解決方案:) – 2009-12-23 10:19:30