Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

fullscreenchange

fullscreenchange イベントは、ブラウザがフルスクリーンモードに移行またはフルスクリーンモードを終了したときに発生するイベントです。

一般情報

仕様
Fullscreen
インターフェイス
Event
バブリング
あり
キャンセル可能か
いいえ
ターゲット
Document
既定のアクション
なし

プロパティ

プロパティ 説明
target 読取専用 EventTarget イベントターゲット (DOM ツリー内最上位の対象)
type 読取専用 DOMString イベントの型
bubbles 読取専用 Boolean 通常時のバブリングの有無
cancelable 読取専用 Boolean イベントのキャンセルの可否

// この API を実装しているブラウザは、まだベンダー接頭辞を付加しています
document.addEventListener("fullscreenchange", function( event ) {

    // このイベントオブジェクトはブラウザの全画面表示の状態の情報を持ちませんが、
    // Fullscreen API を使用して情報を得ることができます
    if ( document.fullscreenEnabled ) {
        
        // イベントのターゲットは常に document ですが API を使用して、
        // 全画面表示している要素を得ることができます
        document.fullscreenElement;
    }

});

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: yyss
 最終更新者: yyss,