ページ全体をオーバーレイで覆い、ページが読み込まれたらオーバーレイを削除します。必要に応じて、これを微調整して、loading.gif も表示することができます。次に例を示します。
HTML
<body>
<div id="container">
<h2>Header</h2>
<p>Page content goes here.</p>
<br />
<button id="remove_overlay">Remove Overlay</button>
</div>
</body>
CSS
#container{padding:20px;}
h2 {margin-bottom: 10px; font-size: 24px; font-weight: bold;}
#overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height:2305px !important; /*change to YOUR page height*/
background-color: #000;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
z-index: 998;
}
#remove_overlay{position:relative; z-index:1000;}
jQuery:
$(document).ready(function () {
// Set a variable that is set to the div containing the overlay (created on page load)
var page_overlay = jQuery('<div id="overlay"> </div>');
// Function to Add the overlay to the page
function showOverlay(){
page_overlay.appendTo(document.body);
}
// Function to Remove the overlay from the page
function hideOverlay(){
page_overlay.remove();
}
// Show the overlay.
$(showOverlay);
});
});
$(document).ready(function () {
$(hideOverlay);
});
ページが要求されるとすぐにオーバーレイが読み込まれるように、これを微調整する必要があります ($(showOverlay);
ドキュメントの準備が整う前に呼び出されるように呼び出しを微調整します。
これは、オーバーレイを削除するためのボタンを備えた簡単な作業フィドルです。そこから行けるはずです :) http://jsfiddle.net/3quN5/
</p>