私は小さくないCSS背景画像を持っていますが、残念ながらPhotoshopで可能な限り圧縮しました。ページが読み込まれるまでページが表示されないようにする読み込みdivがあります。ただし、CSSBGがロードされる前にdivが表示されます。CSS BGイメージがロードされるまでスクリプトが起動しないようにするにはどうすればよいですか?
CSS:
#background-wrap{
background: url(bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
/* Cover for IE 7/8 */
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg.jpg', sizingMethod='scale');
-ms-filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg.jpg', sizingMethod='scale');
/* End Cover for IE 7/8 */
background-size: cover;
background-color: transparent !important;
position:fixed;
top: 0;
left: 0;
width: 100%;
height:100%;
max-width:3000px;
max-height:1500px;
z-index:1;
}
HTML:
<div id="loading">
<h2 class="textcenter">Loading...</h2>
<img id="loading-image" style="width:32px;" class="center" src="/images/ajax-loader.gif" alt="Loading..." />
</div>
<div id="content-wrap" class="hide">
<div id="background-wrap">
<div class="img-center" style="z-index:9999;"><img src="img.png" />
</div>
<p> </p>
</div>
</div>
JS:
var $j = jQuery.noConflict();
$j(window).load(function() {
$j('#loading').fadeOut('slow', function() {
$j("#content-wrap").fadeIn("slow");
});
});