diff options
author | MDN <actions@users.noreply.github.com> | 2022-02-12 00:56:58 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2022-02-12 00:56:58 +0000 |
commit | 01f082cdc9c06afc6dfa7573345590ea9eec8714 (patch) | |
tree | 55430234aa4a832b625c7879916dffcd025c13f1 /files/ja/conflicting/web/api | |
parent | bf9c159c4b69bafea62616ab67074da0e9e96f0a (diff) | |
download | translated-content-01f082cdc9c06afc6dfa7573345590ea9eec8714.tar.gz translated-content-01f082cdc9c06afc6dfa7573345590ea9eec8714.tar.bz2 translated-content-01f082cdc9c06afc6dfa7573345590ea9eec8714.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting/web/api')
-rw-r--r-- | files/ja/conflicting/web/api/document/fullscreenchange_event/index.html | 75 | ||||
-rw-r--r-- | files/ja/conflicting/web/api/document/fullscreenerror_event/index.html | 75 |
2 files changed, 150 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/document/fullscreenchange_event/index.html b/files/ja/conflicting/web/api/document/fullscreenchange_event/index.html new file mode 100644 index 0000000000..4c841161a0 --- /dev/null +++ b/files/ja/conflicting/web/api/document/fullscreenchange_event/index.html @@ -0,0 +1,75 @@ +--- +title: Document.onfullscreenchange +slug: conflicting/Web/API/Document/fullscreenchange_event +tags: + - API + - Document + - Event Handler + - Fullscreen API + - Property + - Reference + - イベントハンドラー + - プロパティ + - 全画面 API +translation_of: Web/API/Document/onfullscreenchange +original_slug: Web/API/Document/onfullscreenchange +--- +<div>{{APIRef("Fullscreen API")}}</div> + +<p><span class="seoSummary">{{domxref("Document")}} インターフェイスの <code><strong>onfullscreenchange</strong></code> プロパティは、文書が全画面モードに移行したり復帰したりする直前に発生する {{event("fullscreenchange")}} イベントのイベントハンドラーです。</span></p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox"><var>targetDocument</var>.onfullscreenchange = <var>fullscreenChangeHandler</var>; +</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>文書が全画面モードへの移行および復帰を示す {{event("fullscreenchange")}} イベントを受け取るたびに呼び出されるイベントハンドラーです。</p> + +<h2 id="Usage_notes" name="Usage_notes">使用上のメモ</h2> + +<p><code>fullscreenchange</code> イベントは全画面モードへの移行か復帰かを直接特定する方法がないので、イベントハンドラーでは {{domxref("Document.fullscreenElement")}} の値を見てください。 <code>null</code> であれば、イベントは全画面モードからの<em>復帰</em>を示します。それ以外であれば、指定された要素が画面全体に表示されるところです。</p> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">document.onfullscreenchange = function ( event ) { + console.log("FULL SCREEN CHANGE") +}; +document.documentElement.onclick = function () { + // requestFullscreen() はイベントハンドラー内で使用しなければなりません。そうしなければ失敗します。 + document.documentElement.requestFullscreen(); +} +</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("Fullscreen", "#handler-document-onfullscreenchange", "onfullscreenchange")}}</td> + <td>{{Spec2("HTML WHATWG")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> + +<p>{{Compat("api.Document.onfullscreenchange")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Web/API/Fullscreen_API">Fullscreen API</a></li> + <li><a href="/ja/docs/Web/API/Fullscreen_API/Guide">Fullscreen API ガイド</a></li> + <li>{{event("fullscreenchange")}}</li> + <li>{{domxref("Document.onfullscreenerror")}}</li> +</ul> diff --git a/files/ja/conflicting/web/api/document/fullscreenerror_event/index.html b/files/ja/conflicting/web/api/document/fullscreenerror_event/index.html new file mode 100644 index 0000000000..7bb78e498c --- /dev/null +++ b/files/ja/conflicting/web/api/document/fullscreenerror_event/index.html @@ -0,0 +1,75 @@ +--- +title: Document.onfullscreenerror +slug: conflicting/Web/API/Document/fullscreenerror_event +tags: + - API + - Document + - Event Handler + - Fullscreen API + - Property + - Reference + - イベントハンドラー + - エラー + - 全画面 + - 全画面 API +translation_of: Web/API/Document/onfullscreenerror +original_slug: Web/API/Document/onfullscreenerror +--- +<div>{{ApiRef("Fullscreen API")}}</div> + +<p><span class="seoSummary"><code><strong>Document.onfullscreenerror</strong></code> プロパティは、文書が直前の {{domxref("Element.requestFullscreen()")}} の呼び出しの後で全画面モードへの移行に失敗したときに、文書に送信される {{event("fullscreenerror")}} イベントのイベントハンドラーです。</span></p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox"><var>targetDocument</var>.onfullscreenerror = <var>fullscreenErrorHandler</var>; +</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>{{event("fullscreenerror")}} イベントのイベントハンドラーです。</p> + +<h2 id="Example" name="Example">例</h2> + +<p>この例では <code>requestFullscreen()</code> をイベントハンドラーの外で呼び出そうとしています。 <code>requestFullscreen()</code> はセキュリティ上の理由から、ユーザー操作への応答の中でしか呼び出せないため、これは失敗し、 <code>fullscreenerror</code> が発生して document に送られます。</p> + +<pre class="brush: js">document.onfullscreenerror = function ( event ) { + displayWarning("Unable to switch into full-screen mode."); +}; + +//.... + +document.documentElement.requestFullscreen(); +</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("Fullscreen", "#handler-document-onfullscreenerror", "onfullscreenerror")}}</td> + <td>{{Spec2("HTML WHATWG")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> + +<p>{{Compat("api.Document.onfullscreenerror")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Web/API/Fullscreen_API">Fullscreen API</a></li> + <li><a href="/ja/docs/Web/API/Fullscreen_API/Guide">Fullscreen API ガイド</a></li> + <li>{{event("fullscreenerror")}}</li> + <li>{{domxref("Document.onfullscreenchange")}}</li> + <li>{{domxref("Element.onfullscreenerror")}}</li> +</ul> |