我知道如何实现全屏/可扩展背景图像;我通常使用 jQuery 方法。例如:http : //tinyurl.com/9yl4rbw
但!我正在尝试使背景图像在每次访问页面时都不同。不是幻灯片;但就像旧的 javascript (EG: http://www.computerhope.com/j18.htm )
我怎么能把两者结合起来;jQuery可扩展背景和页面刷新新图像javascript?
有人遇到过这种效果的优质插件吗?
*编辑_ _ _*
我在上面的参考 URL 中使用 jQuery 方法;基本上如下:
<!--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 图像;刷新页面 > 新辐射图像;(×30)