ボディの背景を変更できるjqueryスクリプトがあります
本体の背景画像をブラウザー ウィンドウのサイズに合わせてスケーリングしたいhttp://www.buildinternet.com/project/supersized/というスクリプトがありますが、そのスクリプトのスケーリングを利用できないため、 background-img ではなくクラス img に影響します
何か案は
<script type="text/javascript">
$(document).ready(function() {
$("#BGSelector a").click(function() {
var imgLink = $("img", this).attr("src");
$.cookie("html_img", "" + imgLink + "", { path: '', expires: 7 });
var imgCookieLink = $.cookie("html_img");
$("body").css("background", "url('" + imgCookieLink + "') no-repeat fixed center top #343837");
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
var imgCookieLink = $.cookie("html_img");
$("body").css("background", "url('" + imgCookieLink + "') no-repeat fixed center top #343837");
});
</script>