blob: 64c33815cbb5ba4f53a59caa6b23bd8b8ab6871c (
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
|
---
title: MediaQueryList.media
slug: Web/API/MediaQueryList/media
tags:
- API
- CSSOM View
- Media
- Media Queries
- MediaQueryList
- Property
- Reference
- プロパティ
- メディア
- メディアクエリ
translation_of: Web/API/MediaQueryList/media
---
<p>{{APIRef("CSSOM")}}</p>
<p><code><strong>media</strong></code> は {{DOMxRef("MediaQueryList")}} インターフェイスの読取専用プロパティであり、 {{DOMxRef("DOMString")}} でシリアライズされたメディアクエリを表します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">var <var>media</var> = <var>MediaQueryList</var>.media;</pre>
<h3 id="Value" name="Value">値</h3>
<p>{{DOMxRef("DOMString")}} で、シリアライズされたメディアクエリあを表します。</p>
<h2 id="Examples" name="Examples">例</h2>
<p>この例では、 <code>(max-width: 600px)</code> のメディアクエリを実行し、 <code>MediaQueryList</code> の <code>media</code> プロパティの結果の値を {{HTMLElement("span")}} の中に表示します。</p>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">let mql = window.matchMedia('(max-width: 600px)');
document.querySelector(".mq-value").innerText = mql.media;
</pre>
<p>この JavaScript コードは一致させるメディアクエリを単に {{DOMxRef("Window.matchMedia", "matchMedia()")}} に渡してコンパイルし、それから <code><span></code> の {{DOMxRef("HTMLElement.innerText", "innerText")}} に {{DOMxRef("MediaQueryList.media", "media")}} プロパティの結果の値を設定します。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><span class="mq-value"></span></pre>
<p>シンプルな <code><span></code> は出力を受け取るためのものです。</p>
<div class="hidden">
<h3 id="CSS">CSS</h3>
<pre class="brush: css notranslate">.mq-value {
font: 18px arial, sans-serif;
font-weight: bold;
color: #88f;
padding: 0.4em;
border: 1px solid #dde;
}
</pre>
</div>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Examples", "100%", "60")}}</p>
<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("CSSOM View", "#dom-mediaquerylist-media", "media")}}</td>
<td>{{Spec2("CSSOM View")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.MediaQueryList.media")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/CSS/Media_queries">メディアクエリ</a></li>
<li><a href="/ja/docs/CSS/Using_media_queries_from_code">コードからのメディアクエリの使用</a></li>
<li>{{DOMxRef("window.matchMedia()")}}</li>
<li>{{DOMxRef("MediaQueryList")}}</li>
<li>{{DOMxRef("MediaQueryListEvent")}}</li>
</ul>
|