我有一个网站,无论屏幕高度如何,我都希望每个网站的内容都处于死点。
我想要实现的是这样的:
#content {position:absolute; top:50%; height:240px; margin-top:-120px; /* negative half of the height */}
而且我不确定如何编码:
function fullscreenHeight(){
var window_height = $(window).height();
var negative_margin = window_height / 2 * -1;
$('.pageclass01').css({height:window_height});
$('.pageclass01').css({margin-top:negative_margin});
}
fullscreenHeight();
$(window).bind('resize',function() {
fullscreenHeight();
});
有谁能帮我解决这个问题吗?:)