高度自适应

来源:互联网 发布:女神联盟11进阶数据 编辑:程序博客网 时间:2024/04/28 19:55
//高度自适应
function resetSize(){
var headerHeight=80;
footerHeight=50,
bodyHeight=window.innerHeight-headerHeight-footerHeight,
IE8bodyHeight = document.documentElement.clientHeight,
oMid = document.getElementById("index4Pic");
$("#leftFrame").css("height", bodyHeight-40-5);
$(".rightContent").css("height", bodyHeight-80);
if(!bodyHeight && oMid){
oMid.style.height = IE8bodyHeight/2+120  ;
}

}
0 0