0
A
回答
1
還有一個名爲SuperSized的插件:http://buildinternet.com/project/supersized/,插件可以處理所有跨瀏覽器的兼容性,並且可以根據需要在您選擇的時間間隔內交換圖像。
或者HTML5的方式做到這一點(僅支持Chrome等某些瀏覽器):http://jsfiddle.net/jfriend00/vzYrf/
html {
background: url(http://photos.smugmug.com/photos/344291068_HdnTo-XL.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
或兩個以上的方式做到這一點吧:Perfect Full Page Background Image。
0
它很簡單:)
一些CSS:
<style type="text/css"> html { height: 100%; overflow:hidden;} body { background-color: transparent; margin: 0px; padding: 0px; height: 100%; border-top: 1px transparent solid; margin-top: -1px; z-index:0; position:relative; } img#background { height: 100%; width: 100%; z-index: -1; position:absolute; color: black; } </style>
你可以使用這些值打...
和主體內容:
<body bgcolor="#000300" style="margin:0px; width:100%"> <img id="background" src="background.jpg" alt="My Background" /> </body>
這是1背景,其餘的你可以用javascript做...
<script type="text/javascript"> function changeBackground(){ var backgrounds = ['back1.jpg', 'back2.jpg', 'back3.jpg']; var inRandom = Math.floor(Math.random() * backgrounds.length); document.getElementById('background').src = backgrounds[inRandom]; setTimeout ("changeBackground()", 10000); } setTimeout ("changeBackground()", 10000); </script>
我沒有測試腳本,但是這是基本的想法...
+0
不要忘了提供
有誰推薦別的東西嗎? – javi
這是如何工作的?我將它下載並保存在與我的網站保存在同一路徑或文件夾中,但是如何激活它?這只是一個文件,那裏...新的jQuery,如此混亂大聲笑。 – javi
在頁面中包含它和jQuery以獲取頁面中的代碼,然後按照使用全屏幕背景幻燈片的說明進行操作。 – jfriend00