Document: fullscreenchange event
The fullscreenchange
event is fired immediately after the browser switches into or out of full-screen mode.
Bubbles | Yes |
---|---|
Cancelable | No |
Interface | Event |
Event handler property | onfullscreenchange |
The event is sent to the Element
that is transitioning into or out of full-screen mode, and this event then bubbles up to the Document
.
To find out whether the Element
is entering or exiting full-screen mode, check the value of Document.fullscreenElement
: if this value is null
then the element is exiting full-screen mode, otherwise it is entering full-screen mode.
Examples
In this example, a handler for the fullscreenchange
event is added to the Document
.
document.addEventListener('fullscreenchange', (event) => { // document.fullscreenElement will point to the element that // is in fullscreen mode if there is one. If there isn't one, // the value of the property is null. if (document.fullscreenElement) { console.log(`Element: ${document.fullscreenElement.id} entered full-screen mode.`); } else { console.log('Leaving full-screen mode.'); } });
See Element: fullscreenchange event for another example.
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
fullscreenchange_event |
71
15
|
79
12
12-14
|
64
10
|
11 |
58
15
12.1-15
|
5.1 |
71
≤37
|
71
18
|
64
10
|
50
14
12.1-14
|
12
Only available on iPad, not on iPhone.
|
10.0
1.0
|
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenchange_event