页面自动适应大小&&获取页面的大小

直接上代码:

<script type="text/JavaScript">

var size = 1.0;  
function showheight() {
    alert(document.body.clientHeight);
}
function zoomout() {
 size = size + 0.1;  
 set(); 
}  


function zoomin() {  
 size = size - 0.1;  
 set();  
}  


function set() {  
 //document.body.style.cssText = document.body.style.cssText + '; -webkit-transform: scale(' + size + ');-webkit-transform-origin: 0 0;';   
 //document.body.style.cssText = document.body.style.cssText + '; -webkit-transform: scale(' + size + '); '; 
 //$(body).css("width","120%);
document.body.style.zoom = size;
document.body.style.cssText += '; -moz-transform: scale(' + size + ');-moz-transform-origin: 0 0; ';     //
} 
    </script>
    <input type="button" onclick="javascript:zoomin();" value="zoomin">
    <input type="button" onclick="javascript:zoomout();" value="zoomout">
    <input type="button" onclick="javascript:showheight();" value="showheight">

原文地址:https://www.cnblogs.com/mr-wuxiansheng/p/7071770.html