--- title: DocumentOrShadowRoot.fullscreenElement slug: Web/API/DocumentOrShadowRoot/fullscreenElement tags: - API - Document - DocumentOrShadowRoot - Full-screen - Fullscreen API - Graphics - Property - Read-only - Reference - ShadowRoot - fullscreenElement - screen - グラフィック - 全画面 - 読み取り専用 translation_of: Web/API/DocumentOrShadowRoot/fullscreenElement ---
DocumentOrShadowRoot.fullscreenElement
プロパティは読み取り専用で、この文書内で現在全画面モードで表示されている {{ domxref("Element") }} を返し、全画面モードを使用していない場合は null
を返します。
このプロパティは読み取り専用ですが、変更されても (strict モードでも) 例外は発生しません。設定しても何もせず、無視されます。
var element = document.fullscreenElement;
現在全画面モードになっている {{domxref("Element")}} オブジェクト。全画面モードがこの document
で使用されていない場合、返値は null
です。
この例は isVideoInFullscreen()
関数を表し、 fullscreenElement
からの返値を調べています。文書が全画面モードで (fullscreenElement
が null
ではなく)、全画面の要素の {{domxref("Node.nodeName", "nodeName")}} が VIDEO
、すなわち {{HTMLElement("video")}} 要素を表す場合、この関数は true
、すなわち動画が全画面モードであることを表します。
function isVideoInFullscreen() { if (document.fullscreenElement && document.fullscreenElement.nodeName == 'VIDEO') { return true; } return false; }
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("Fullscreen", "#dom-document-fullscreenelement", "Document.fullscreenElement")}} | {{Spec2("Fullscreen")}} | 初回定義 |
{{Compat("api.DocumentOrShadowRoot.fullscreenElement")}}