blob: 23b51d4d72194c58310e813280af0c970426904d (
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
|
---
title: orientation
slug: Web/Manifest/orientation
tags:
- マニフェスト
- Orientation
- ウェブ
browser-compat: html.manifest.orientation
translation_of: Web/Manifest/orientation
---
{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}}
<table class="properties">
<tbody>
<tr>
<th scope="row">型</th>
<td>`String`</td>
</tr>
<tr>
<th scope="row">必須</th>
<td>いいえ</td>
</tr>
</tbody>
</table>
`orientation` メンバーは、ウェブサイトの最上位の{{Glossary("Browsing context", "閲覧コンテキスト")}}すべてについて、既定の向きを定義します。
> **Note:** ユーザーエージェントの表示モードによっては、 `orientation` やその中の特定の値に対応していないことがあります。これらに対応することが、特定のコンテキストでは意味がないからです。
> **Note:** 実行時に画面の向きを変更するには、 [Screen Orientation API](/ja/docs/Web/API/Screen/orientation) を利用して実現することができます。
## 値
`orientation` は以下の値の内の一つを取ることができます。
- `any`
- `natural`
- `landscape`
- `landscape-primary`
- `landscape-secondary`
- `portrait`
- `portrait-primary`
- `portrait-secondary`
## 例
```json
"orientation": "portrait-primary"
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
|