首页 > 其他 > 详细

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

时间:2017-06-23 22:45:58      阅读:265      评论:0      收藏:0      [点我收藏+]

直接上代码:

<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">

 

技术分享

 

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

原文:http://www.cnblogs.com/mr-wuxiansheng/p/7071770.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!