DocumentOrShadowRoot.fullscreenElement - Web APIs 编辑
The DocumentOrShadowRoot.fullscreenElement
read-only property returns the Element
that is currently being presented in full-screen mode in this document, or null
if full-screen mode is not currently in use.
Although this property is read-only, it will not throw if it is modified (even in strict mode); the setter is a no-operation and it will be ignored.
Syntax
var element = document.fullscreenElement;
Return value
The Element
object that's currently in full-screen mode; if full-screen mode isn't currently in use by the document
>, the returned value is null
.
Example
This example presents a function, isVideoInFullscreen()
, which looks at the value returned by fullscreenElement
; if the document is in full-screen mode (fullscreenElement
isn't null
) and the full-screen element's nodeName
is VIDEO
, indicating a <video>
element, the function returns true
, indicating that the video is in full-screen mode.
function isVideoInFullscreen() {
if (document.fullscreenElement && document.fullscreenElement.nodeName == 'VIDEO') {
return true;
}
return false;
}
Specifications
Specification | Status | Comment |
---|---|---|
Fullscreen API The definition of 'Document.fullscreenElement' in that specification. | Living Standard | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论