zoukankan      html  css  js  c++  java
  • js控制页面的全屏展示和退出全屏显示

    <!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;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>
  • 相关阅读:
    11月7日
    11月6日
    11月5日
    11月4日
    html5
    intern
    pjtool用到的数据库----oracle范畴
    运用的jdk版本如何查看
    JAVA 一句话技巧
    [ios 开发笔记]:一句话笔记
  • 原文地址:https://www.cnblogs.com/gisblogs/p/3964780.html
Copyright © 2011-2022 走看看