Home Web Front-end H5 Tutorial Detailed introduction to HTML5 Fullscreen API_html5 tutorial skills

Detailed introduction to HTML5 Fullscreen API_html5 tutorial skills

May 16, 2016 pm 03:46 PM
api html5 full screen

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.)

Copy the code
The code is as follows:

// Find the supported method and use the element that requires full screen Call
function launchFullScreen(element) {
if(element.requestFullscreen) {
element.requestFullscreen();
} else if(element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else if(element.webkitRequestFullscreen) {
element.webkitRequestFullscreen();
} else if(element.msRequestFullscreen) {
element.msRequestFullscreen();
}
}


// Launch full screen in a browser that supports full screen
// The entire page
launchFullScreen(document.documentElement);
// An element
launchFullScreen( document.getElementById("videoElement"));

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.

Copy the code
The code is as follows:

// Exit fullscreen
function exitFullscreen() {
if(document.exitFullscreen) {
document. exitFullscreen();
} else if(document.mozExitFullScreen) {
document.mozExitFullScreen();
} else if(document.webkitExitFullscreen) {
document.webkitExitFullscreen();
}
}


// Call the exit full screen method!
exitFullscreen();

Please note: exitFullscreen can only be called through the document object - not Use a normal DOM element.

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:


Copy code
The code is as follows:

var fullscreenElement =
document.fullscreenEnabled
|| document.mozFullscreenElement
|| document.webkitFullscreenElement;
var fullscreenEnabled =
document.fullscreenEnabled
|| document.mozFullscreenEnabled
|| document.webkitFullscreenEnabled;

When initializing the full-screen method, you can detect which event needs to be monitored.

Fullscreen CSS

The browser provides some useful fullscreen CSS control rules:

Copy the code
The code is as follows:

/* html */
:-webkit-full-screen {
/* properties */
}
:-moz-fullscreen {
/* properties * /
}


:fullscreen {
/* properties */
}


/* deeper elements */
:-webkit -full-screen video {
width: 100%;
height: 100%;
}


/* styling the backdrop */
::backdrop {
/* properties */
}

In some cases, WebKit requires some special processing, so when dealing with multimedia, you may need the above code.

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

See all articles