我知道如何實現全屏/可擴展背景圖像;我通常使用jQuery方法。 EG:http://tinyurl.com/9yl4rbw全屏幕背景圖像+旋轉圖像?
但是!我試圖讓它每次頁面被訪問時背景圖像都不同。不是幻燈片放映;但像舊的JavaScript(EG:http://www.computerhope.com/j18.htm)
我怎麼能結合這兩個; jQuery的可擴展背景和頁面刷新新圖像的JavaScript?
任何人都遇到過這種效果的質量插件?
* Edit_ _ _ *
我使用了jQuery方法與上述參考URL之內;下面主要:
<!--Expandable BG code IE 7 +-->
<style>
#bg { position: fixed; top: 0; left: 0; }
.bgwidth { width: 100%; }
.bgheight { height: 100%; }
#page-wrap { position: relative; width: 950px; margin-left: auto; margin-right: auto;; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function() {
var theWindow = $(window),
$bg = $("#bg"),
aspectRatio = $bg.width()/$bg.height();
function resizeBg() {
if ((theWindow.width()/theWindow.height()) < aspectRatio) {
$bg
.removeClass()
.addClass('bgheight');
} else {
$bg
.removeClass()
.addClass('bgwidth');
}
}
theWindow.resize(function() {
resizeBg();
}).trigger("resize");
});
</script>
<!--Expandable BG code IE 7 +-->
<!--Full BG Call-->
<img src="Sandwichfullbg.jpg" id="bg" >
<div id="page-wrap">
<!--End Full BG Call-->
我想找到一個簡單的解決方案給在新的頁面訪問或頁面刷新的背景變化;理想地擁有大約30張圖片。 EG:刷新頁面>新的rad圖像;刷新頁面>新的rad圖像; (x 30)
究竟是你使用jQuery的方法?它是如何工作的? – Nick
剛剛編輯我的Q描述上面.. –