aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/exitfullscreen/index.html
blob: 60f2ef45d86d5dd6d7d4d81fab46c041b2539cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: Document.exitFullscreen()
slug: Web/API/Document/exitFullscreen
tags:
  - API
  - DOM
  - Document
  - Full
  - Full-screen
  - Fullscreen API
  - Method
  - Reference
  - exitFullscreen
  - fullscreen
  - screen
  - メソッド
  - 全画面
translation_of: Web/API/Document/exitFullscreen
---
<div>{{ApiRef("Fullscreen API")}}</div>

<p><span class="seoSummary">{{domxref("Document")}}<code><strong>exitFullscreen()</strong></code> メソッドは、この文書で現在全画面モードで表示されている要素が全画面モードを向け、画面を以前の状態に戻すことを要求します。</span>これはふつう、以前の {{domxref("Element.requestFullscreen()")}} の呼び出しの効果を取り消します。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox"><em>exitPromise</em> = <em>document</em>.exitFullscreen();
</pre>

<h3 id="Parameters" name="Parameters">引数</h3>

<p>なし。</p>

<h3 id="Return_value" name="Return_value">返値</h3>

<p>{{Glossary("user agent", "ユーザーエージェント")}}が全画面モードから完全に抜けたら解決される {{jsxref("Promise")}} です。全画面モードから抜けようとしてエラーが発生したら、 Promise の <code>catch()</code> ハンドラーが呼び出されます。</p>

<h2 id="Example" name="Example"></h2>

<p>この例ではマウスボタンで中をクリックするたびに、現在の文書が全画面表示になったり戻ったりします。</p>

<pre>document.onclick = function (event) {
  if (document.fullscreenElement) {
    document.exitFullscreen()
      .then(() =&gt; console.log("Document Exited form Full screen mode"))
      .catch((err) =&gt; console.error(err))
  } else {
    document.documentElement.requestFullscreen()
  }
}</pre>

<div class="note">
<p><strong>注:</strong> もっと完全な例については、{{SectionOnPage("/ja/docs/Web/API/Element/requestFullScreen", "例")}}をご覧ください。</p>
</div>

<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", "#dom-document-exitfullscreen", "Document.exitFullscreen()")}}</td>
   <td>{{Spec2("Fullscreen")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("api.Document.exitFullscreen")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Fullscreen_API">全画面 API</a></li>
 <li><a href="/ja/docs/Web/API/Fullscreen_API/Guide">全画面 API のガイド</a></li>
 <li>{{ domxref("Element.requestFullscreen()") }}</li>
 <li>{{ domxref("Document.fullscreenElement") }}</li>
 <li>{{ cssxref(":fullscreen") }} および {{cssxref("::backdrop")}}</li>
 <li>{{HTMLElement("iframe")}}{{ HTMLAttrXRef("allowfullscreen", "iframe") }} 属性</li>
</ul>