blob: c7ebff7569bb937fcb5b3b46820eaecfec4560c6 (
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
|
---
title: Screen.orientation
slug: Web/API/Screen/orientation
translation_of: Web/API/Screen/orientation
---
<div>{{APIRef("CSSOM View")}}{{SeeCompatTable}}</div>
<p><code>Screen.orientation</code> 屬性可以取得螢幕目前的方向。</p>
<h2 id="語法">語法</h2>
<pre class="syntaxbox">var orientation = window.screen.orientation.type;
</pre>
<h2 id="回傳值">回傳值</h2>
<p>回傳值為一個代表螢幕方向的字串,可能是 <code>portrait-primary</code>、<code>portrait-secondary</code>、<code>landscape-primary</code> 或 <code>landscape-secondary</code>(請參考 {{domxref("window.screen.lockOrientation","lockOrientation")}} 以瞭解更多資訊)。</p>
<h2 id="範例">範例</h2>
<pre class="brush: js">var orientation = screen.orientation || screen.mozOrientation || screen.msOrientation;
if (orientation.type === "landscape-primary") {
console.log("That looks good.");
} else if (orientation.type === "landscape-secondary") {
console.log("Mmmh... the screen is upside down!");
} else if (orientation.type === "portrait-secondary" || orientation.type === "portrait-primary") {
console.log("Mmmh... you should rotate your device to landscape");
}
</pre>
<h2 id="規範">規範</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Screen Orientation', '', 'Screen Orientation')}}</td>
<td>{{Spec2('Screen Orientation')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="瀏覽器相容性">瀏覽器相容性</h2>
{{Compat("api.Screen.orientation")}}
<h2 id="參見">參見</h2>
<ul>
<li>{{domxref("Screen.orientation")}}</li>
<li>{{domxref("Screen.unlockOrientation()")}}</li>
<li>{{domxref("Screen.onorientationchange")}}</li>
<li><a href="/zh-TW/docs/Web/API/CSS_Object_Model/Managing_screen_orientation">控制畫面方向</a></li>
</ul>
|