js controls the full screen display of the page and how to exit the full screen display

  • 2020-05-12 02:08:53
  • OfStack

This article illustrates how to control the full screen display of js and how to exit the full screen display. Share with you for your reference. The specific implementation method is as follows:

<!DOCTYPE html>    
<html>   
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   
<body>   
<div style="margin:0 auto;height:600px;width:700px;"> 
<button id="btn">js Control full screen display and exit full screen display of the page </button>   
<div id="content" style="margin:0 auto;height:500px;width:700px; background:#ccc;" > 
<h1>js Control full screen display and exit full screen display of the page </h1>   
</div> 
</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>

I hope this article has been helpful to your javascript programming.


Related articles: