码迷,mamicode.com
首页 > Web开发 > 详细

js控制页面的全屏展示和退出全屏显示

时间:2014-09-10 17:42:00      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   java   ar   div   cti   

<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body  >
<button id="btn" >js控制页面的全屏展示和退出全屏显示</button>
<div id="content" style="height:500px;width:500px;background:#fff">
  <h1>js控制页面的全屏展示和退出全屏显示</h1>
</div>
</body>
<script language="JavaScript">  
document.getElementById("btn").onclick=function(){ 
 var elem = document.getElementById("content");  
requestFullScreen(elem); 
}; 

function requestFullScreen(element) {
     
    var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen;

    if (requestMethod) {  
        requestMethod.call(element);
    } else if (typeof window.ActiveXObject !== "undefined") {  
        var wscript = new ActiveXObject("WScript.Shell");
        if (wscript !== null) {
            wscript.SendKeys("{F11}");
        }
    }
}
</script>
</html>

 

js控制页面的全屏展示和退出全屏显示

标签:style   blog   http   color   io   java   ar   div   cti   

原文地址:http://www.cnblogs.com/gisblogs/p/3964780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!