이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!
Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The Document.fullscreen
read-only property reports whether or not the document is currently displaying content in fullscreen mode.
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.
This property is deprecated; test if Document.fullscreenElement
is not null
instead.
Syntax
var isFullScreen = document.fullscreen;
Return value
- A
Boolean
that istrue
if the document is being displayed in fullscreen mode; otherwise it'sfalse
.
Example
function isDocumentInFullScreenMode() { // Better: use fullscreenElement method! return document.fullscreen; }
Specifications
Specification | Status | Comment |
---|---|---|
Fullscreen API The definition of 'Document.fullscreen' in that specification. |
Living Standard | Initial definition (as an obsolete property). |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) as webkitIsFullScreen |
9.0 (9.0) as mozFullScreen 49.0 (49.0) (behind full-screen-api.unprefix.enabled |
? | ? | (Yes) as webkitIsFullScreen |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | 9.0 (9.0) as mozFullScreen 49.0 (49.0) (behind full-screen-api.unprefix.enabled |
? | ? | ? |