blob: c0da3d22865ca97e6e6bb5def71e6f303d2ff25f (
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
|
---
title: Screen.unlockOrientation()
slug: Web/API/Screen/unlockOrientation
tags:
- API
- CSSOM View
- Method
- NeedsMarkupWork
- Screen Orientation
- メソッド
- 画面の方向
translation_of: Web/API/Screen/unlockOrientation
---
<p>{{APIRef("Screen Orientation API")}}{{Deprecated_Header}}</p>
<p><strong><code>Screen.unlockOrientation()</code></strong> メソッドは、ページやアプリによって設定されているすべての画面のロックを除去します。代わりに {{DOMxRef("ScreenOrientation.unlock()")}} を使用してください。</p>
<div class="note">
<p><strong>注:</strong> このメソッドはインストールされたウェブアプリまたは<a href="/ja/docs/Web/Guide/DOM/Using_full_screen_mode">全画面モード</a>のウェブページでのみ動作します。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">var <var>unlocked</var> = window.screen.unlockOrientation();
</pre>
<h3 id="Return_value" name="Return_value">返値</h3>
<p>向きの固定の解除が成功した場合に <code>true</code> が、解除されなかった場合に <code>false</code> が返されます。</p>
<h2 id="Examples" name="Examples">例</h2>
<pre class="brush: js; notranslate">var unlockOrientation = screen.unlockOrientation || screen.mozUnlockOrientation || screen.msUnlockOrientation || (screen.orientation && screen.orientation.unlock);
if (unlockOrientation()) {
// 向きのロックが解除されました
} else {
// 向きのロックの解除に失敗しました
}
</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('Screen Orientation', 'published/20140220.html#extensions-to-the-screen-interface', 'lockOrientation()')}}</td>
<td>{{Spec2('Screen Orientation')}}</td>
<td>初回定義 (もう草稿には存在しません)</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Screen.unlockOrientation")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{DOMxRef("Screen.orientation")}}</li>
<li>{{DOMxRef("Screen.lockOrientation()")}}</li>
<li>{{DOMxRef("Screen.onorientationchange")}}</li>
<li><a href="/ja/docs/Managing_screen_orientation">画面の向きの制御</a></li>
</ul>
|