◆css
#shadow{
opacity:0.6;
display:none;
position:fixed;
bottom:0;
width:100%;
height:100%;
background:#000;
z-index:100;
}
◆html
<body>
<div id="contents">aaaaaaaaaaaaaaaaaaaaaaaaaaaa</div>
<div id="shadow" class="sb-close"></div>
</body>
◆jquery
<script>
(function($) {
var h_all = $("#contents").outerHeight();
$("#shadow").css("height",h_all);
}) (jQuery);
</script>