Document: fullscreenchange event - Web APIs 编辑
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 DocumentOrShadowRoot.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
Specification | Status |
---|---|
Fullscreen API | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论