diff options
Diffstat (limited to 'files/ja/web/api/mediaquerylist/change_event/index.html')
-rw-r--r-- | files/ja/web/api/mediaquerylist/change_event/index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/files/ja/web/api/mediaquerylist/change_event/index.html b/files/ja/web/api/mediaquerylist/change_event/index.html new file mode 100644 index 0000000000..388dad93d3 --- /dev/null +++ b/files/ja/web/api/mediaquerylist/change_event/index.html @@ -0,0 +1,73 @@ +--- +title: MediaQueryList.onchange +slug: Web/API/MediaQueryList/change_event +tags: + - API + - CSSOM View + - Event Handler + - MediaQueryList + - Property + - Reference + - onchange + - イベントハンドラー + - プロパティ + - メディアクエリ +translation_of: Web/API/MediaQueryList/onchange +original_slug: Web/API/MediaQueryList/onchange +--- +<p>{{APIRef("CSSOM")}}</p> + +<p><code><strong>onchange</strong></code> は {{DOMxRef("MediaQueryList")}} インターフェイスのプロパティで、 {{domxref("MediaQueryList/change_event", "change")}} イベントが発行されたとき、すなわちメディアクエリの対応の状態が変化したときに呼び出される関数を表します。イベントオブジェクトは {{DOMxRef("MediaQueryListEvent")}} のインスタンスであり、古いブラウザーからは後方互換性のために <code>MediaListQuery</code> のインスタンスと解釈されます。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate"><var>MediaQueryList</var>.onchange = function() { ... };</pre> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js notranslate">var mql = window.matchMedia('(max-width: 600px)'); + +mql.addEventListener( "change", (e) => { + if (e.matches) { + /* ビューポートが 600 ピクセル幅以下 */ + console.log('This is a narrow screen — less than 600px wide.') + } else { + /* ビューポートが 600 ピクセル幅より広い */ + console.log('This is a wide screen — more than 600px wide.') + } +}) + +</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("CSSOM View", "#dom-mediaquerylist-onchange", "onchange")}}</td> + <td>{{Spec2("CSSOM View")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("api.MediaQueryList.onchange")}}</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> |