Element: fullscreenchange event - Web APIs 编辑
The fullscreenchange
event is fired immediately after an Element
switches into or out of full-screen mode.
Bubbles | Yes |
---|---|
Cancelable | No |
Interface | Event |
Event handler property | onfullscreenchange |
This event is sent to the Element
which is transitioning into or out of full-screen mode.
Examples
In this example, a handler for the fullscreenchange
event is added to the element whose ID is fullscreen-div
.
If the user clicks on the "Toggle Fullscreen Mode" button, the click
handler will toggle full-screen mode for the div
. If document.fullscreenElement
has a value it will exit full-screen mode. If not, the div will be placed into full-screen mode.
Remember that by the time the fullscreenchange
event is handled, the status of the element has already changed. So if the change is to full-screen mode, document.fullscreenElement
will point to the element that is now in full-screen mode. On the other hand, if document.fullscreenElement
is null, full-screen mode has been canceled.
What that means to the example code is that, if an element is currently in full-screen mode, the fullscreenchange
handler logs the id
of the full-screen element to the console. If document.fullscreenElement
is null, the code logs a message that the change is to leave full-screen mode.
HTML
<h1>fullscreenchange event example</h1>
<div id="fullscreen-div">
<button id="toggle-fullscreen">Toggle Fullscreen Mode</button>
</div>
JavaScript
document.getElementById('fullscreen-div').addEventListener('fullscreenchange', (event) => {
// document.fullscreenElement will point to the element that
// is in fullscreen mode if there is one. If not, the value
// of the property is null.
if (document.fullscreenElement) {
console.log(`Element: ${document.fullscreenElement.id} entered fullscreen mode.`);
} else {
console.log('Leaving full-screen mode.');
}
});
document.getElementById('toggle-fullscreen').addEventListener('click', (event) => {
if (document.fullscreenElement) {
// exitFullscreen is only available on the Document object.
document.exitFullscreen();
} else {
document.getElementById('fullscreen-div').requestFullscreen();
}
});
Specifications
Specification | Status |
---|---|
Fullscreen API | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论