blob: b0cb3236f87bcff7766ccdfef5a02a1be8f6578b (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
---
title: aspect-ratio
slug: Web/CSS/@media/aspect-ratio
tags:
- '@media'
- CSS
- Reference
- メディアクエリ
- メディア特性
translation_of: Web/CSS/@media/aspect-ratio
---
<div>{{cssref}}</div>
<p><a href="/ja/docs/CSS">CSS</a> の <strong><code>aspect-ratio</code></strong> <a href="/ja/docs/Web/CSS/Media_Queries/Using_media_queries#Media_features">メディア特性</a>は、{{glossary("viewport", "ビューポート")}}のアスペクト比を調べるために使用します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<p><code>aspect-ratio</code> 特性は、ビューポートの幅対高さのアスペクト比を表現する {{cssxref("<ratio>")}} 値で指定します。これは範囲の特性であり、つまり接頭辞の付いた <strong><code>min-aspect-ratio</code></strong> および <code><strong>max-aspect-ratio</strong></code> の変化形を使用して、それぞれ最小値と最大値をクエリすることができます。</p>
<h2 id="Example" name="Example">例</h2>
<p>以下の例は独自のビューポートを生成する {{htmlElement("iframe")}} に含まれています。 <code><iframe></code> の大きさを変更して <code>aspect-ratio</code> の変化を確認してください。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div id='inner'>
ビューポートの幅と高さを変更しながら、この要素を見ていてください。
</div>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">/* 最小アスペクト比 */
@media (min-aspect-ratio: 8/5) {
div {
background: #9af; /* blue */
}
}
/* 最大アスペクト比 */
@media (max-aspect-ratio: 3/2) {
div {
background: #9ff; /* cyan */
}
}
/* 正確なアスペクト比。上書きを防ぐために最下部に配置 */
@media (aspect-ratio: 1/1) {
div {
background: #f9a; /* red */
}
}
</pre>
<div class="hidden">
<h2 id="_Example">_Example</h2>
<p>used iframe and DataURL to enable this iframe could resize</p>
<h3 id="HTML_2">HTML</h3>
<pre class="brush: html"><label id="wf" for="w">width:165</label>
<input id="w" name="w" type="range" min="100" max="250" step="5" value="165">
<label id="hf" for="w">height:165</label>
<input id="h" name="h" type="range" min="100" max="250" step="5" value="165">
<iframe id="outer" src="data:text/html,<style> @media (min-aspect-ratio: 8/5) { div { background: %239af; } } @media (max-aspect-ratio: 3/2) { div { background: %239ff; } } @media (aspect-ratio: 1/1) { div { background: %23f9a; } }</style><div id='inner'> Watch this element as you resize your viewport's width and height.</div>">
</iframe>
</pre>
<h3 id="CSS_2">CSS</h3>
<pre class="brush: css">iframe{
display:block;
}</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">outer.style.width=outer.style.height="165px"
w.onchange=w.oninput=function(){
outer.style.width=w.value+"px"
wf.textContent="width:"+w.value
}
h.onchange=h.oninput=function(){
outer.style.height=h.value+"px"
hf.textContent="height:"+h.value
}</pre>
</div>
<h3 id="Result" name="Result">結果</h3>
<div style="overflow: auto;">
<p>{{ EmbedLiveSample('_Example', '300px', '400px') }}</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('CSS4 Media Queries', '#aspect-ratio', 'aspect-ratio')}}</td>
<td>{{Spec2('CSS4 Media Queries')}}</td>
<td>変更なし</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Media Queries', '#aspect-ratio', 'aspect-ratio')}}</td>
<td>{{Spec2('CSS3 Media Queries')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.at-rules.media.aspect-ratio")}}</p>
|