diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/window/focus_event | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/window/focus_event')
-rw-r--r-- | files/ja/web/api/window/focus_event/index.html | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/files/ja/web/api/window/focus_event/index.html b/files/ja/web/api/window/focus_event/index.html new file mode 100644 index 0000000000..31fcdbf73c --- /dev/null +++ b/files/ja/web/api/window/focus_event/index.html @@ -0,0 +1,124 @@ +--- +title: 'Window: focus イベント' +slug: Web/API/Window/focus_event +tags: + - API + - Event + - Focus + - FocusEvent + - Reference + - Web + - Window + - onfocus + - イベント +translation_of: Web/API/Window/focus_event +--- +<div>{{APIRef}}</div> + +<p><strong><code>focus</code></strong> イベントは、要素がフォーカスを取得したときに発生します。</p> + +<p><code>focus</code> の反対は {{domxref("Window/blur_event", "blur")}} です。</p> + +<table class="properties"> + <tbody> + <tr> + <th>バブリング</th> + <td>なし</td> + </tr> + <tr> + <th>キャンセル</th> + <td>不可</td> + </tr> + <tr> + <th>インターフェイス</th> + <td>{{DOMxRef("FocusEvent")}}</td> + </tr> + <tr> + <th>イベントハンドラープロパティ</th> + <td>{{domxref("GlobalEventHandlers/onfocus", "onfocus")}}</td> + </tr> + <tr> + <th>同期 / 非同期</th> + <td>同期</td> + </tr> + <tr> + <th>Composed</th> + <td>はい</td> + </tr> + </tbody> +</table> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Live_example" name="Live_example">ライブデモ</h3> + +<p>この例ではフォーカスを失ったときに文書の外見を変更します。 {{domxref("EventTarget.addEventListener()", "addEventListener()")}} を使用して <code>focus</code> および {{domxref("Window/blur_event", "blur")}} イベントを監視します。</p> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><p id="log">Click on this document to give it focus.</p></pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css">.paused { + background: #ddd; + color: #555; +}</pre> + +<h4 id="JavaScript">JavaScript</h4> + +<pre class="brush: js">function pause() { + document.body.classList.add('paused'); + log.textContent = 'FOCUS LOST!'; +} + +function play() { + document.body.classList.remove('paused'); + log.textContent = 'This document has focus. Click outside the document to lose focus.'; +} + +const log = document.getElementById('log'); + +window.addEventListener('blur', pause); +window.addEventListener('focus', play);</pre> + +<h4 id="Result" name="Result">結果</h4> + +<p>{{EmbedLiveSample("Live_example")}}</p> + +<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("UI Events", "#event-type-focus")}}</td> + <td>{{Spec2("UI Events")}}</td> + <td>Added info that this event is composed.</td> + </tr> + <tr> + <td>{{SpecName("DOM3 Events", "#event-type-focus")}}</td> + <td>{{Spec2("DOM3 Events")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("api.Window.focus_event")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>関連イベント: {{domxref("Window/blur_event", "blur")}}</li> + <li><code>Element</code> を対象としたこのイベント: {{domxref("Element/focus_event", "focus")}} イベント</li> +</ul> |