div高度全屏

来源:互联网 发布:沉默的螺旋 案例 知乎 编辑:程序博客网 时间:2024/05/22 12:19
function fullScreen(){
total = document.documentElement.clientHeight;
colHeight = total-document.getElementById("pageRight").offsetTop;
document.getElementById("pageLeft").style.height=colHeight+"px";
document.getElementById("pageRight").style.height=colHeight+"px";
document.getElementById("pageFooter").style.height=colHeight+"px";
document.getElementById("icon").style.height=colHeight+"px";
document.getElementById("icon").style.paddingTop=colHeight/2+"px";
document.getElementById("icon2").style.height=colHeight+"px";
document.getElementById("icon2").style.paddingTop=colHeight/2+"px";
}
0 0
原创粉丝点击