http://jsfiddle.net/MAaVV/Javascript全屏幕圖像代碼
上面是我的代碼的JSFiddle。這是一些CSS來製作全屏圖像,然後對圖像進行簡單的src更改。我想每5秒更換一次圖像背景。它也在下面:
<STYLE type=text/css>
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}
</style>
<script type="text/javascript">
for(var x = 0; x < 2; x++)
{
setTimeout(function()
{
var imgs = ["http://www.hdwallpapers.in/walls/aprilia_rsv4_motorcycles-wide.jpg","http://chivethethrottle.files.wordpress.com/2012/12/user-girl-motorcycle-920-3.jpg","clf.jpg"];
document.getElementById("img").src = imgs[x];
},5000);
}
</script>
<div id="bg">
<img id="img" src="http://chivethethrottle.files.wordpress.com/2012/12/user-girl-motorcycle-920-3.jpg?w=919&h=613" alt="" />
</div>
任何人都知道爲什麼它不工作?
在幻燈片的最後一張圖片顯示5秒鐘後,用於重定向(到另一個網站)的建築獎勵積分。
你知道我會如何做這個代碼的重定向嗎? – CODe 2013-03-12 07:01:04
檢查上面的代碼,它可能無法在'Fiddle'上運行,因爲它使用'iframe',但運行在一個'html頁面'上。 – 2013-03-12 07:13:23