Home >Web Front-end >H5 Tutorial >Detailed introduction to HTML5 Fullscreen API_html5 tutorial skills
In more and more real web applications, JavaScript is becoming more and more powerful.
FullScreen API is a new JavaScript API, simple and powerful. FullScreen allows us to programmatically request full-screen display from the user, and if the interaction is completed, we can exit the full-screen state at any time.
Online Demonstration Demo: Fullscreen API Example
(In this Demo, you can Launch, Hide, and Dump to display related properties, and you can view log information through the chrome console.)
Enable full screen mode
The full-screen API requestFullscreen method still uses the method name with a prefix in some old browsers, so detection and judgment may be required:
(With a prefix, it means that each browser kernel is not universal.)
Take the DOM element that needs to be displayed in full screen as a parameter. Calling this method can make the window enter the full screen state. Sometimes the user's consent may be required (the browser itself interacts with the user). If the user refuses, various incompleteness may occur. full screen.
If the user agrees to go full screen, the toolbar and other browser components will be hidden, making the width and height of the document frame span the entire screen.
Exit full screen mode
Use the exitFullscreen method to exit the browser from full screen and return to the original layout. This method also supports the prefix method on some old browsers.
Fullscreen properties and events
The bad news is that so far, full-screen events and methods are still prefixed. The good news is that soon all major browsers will support them.
1.document.fullscreenElement: The element currently in full-screen state.
2.document.fullscreenEnabled: Mark whether fullscreen is currently available.
When entering/exiting full screen mode, the fullscreenchange event will be triggered:
Fullscreen CSS
The browser provides some useful fullscreen CSS control rules:
I think the Fullscreen API is super simple and super useful. The first time I saw this API was in a full-client first-person shooter game called MDN's BananaBread demo, which is really a great way to use full-screen mode. Excellent case.
The full-screen API provides a way to enter and exit full-screen mode, and provides corresponding events to monitor changes in full-screen status, so all aspects are coherent.
Just remember this great API - it will definitely come in handy at some point in the future!