Baseline Widely available
The Window
interface's matchMedia()
method returns a new MediaQueryList
object that can then be used to determine if the document
matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query.
matchMedia(mediaQueryString)
Parameters
mediaQueryString
A string specifying the media query to parse into a MediaQueryList
.
Just like in CSS, any media feature must be wrapped in parentheses inside the expression. For example: matchMedia("(max-width: 600px)")
works, whereas matchMedia("max-width: 600px")
does not. Keywords for media types (all
, print
, screen
) and logical operators (and
, or
, not
, only
) do not need to be wrapped in parentheses.
A new MediaQueryList
object for the media query. Use this object's properties and events to detect matches and to monitor for changes to those matches over time.
You can use the returned media query to perform both instantaneous and event-driven checks to see if the document matches the media query.
To perform a one-time, instantaneous check to see if the document matches the media query, look at the value of the matches
property, which will be true
if the document meets the media query's requirements.
If you need to be kept aware of whether or not the document matches the media query at all times, you can instead watch for the change
event to be delivered to the object. There's a good example of this in the article on Window.devicePixelRatio
.
This example runs the media query (max-width: 600px)
and displays the value of the resulting MediaQueryList
's matches
property in a <span>
; as a result, the output will say "true" if the viewport is less than or equal to 600 pixels wide, and will say "false" if the window is wider than that.
let mql = window.matchMedia("(max-width: 600px)");
document.querySelector(".mq-value").innerText = mql.matches;
The JavaScript code passes the media query to match into matchMedia()
to compile it, then sets the <span>
's innerText
to the value of the results' matches
property, so that it indicates whether or not the document matches the media query at the moment the page was loaded.
<span class="mq-value"></span>
A simple <span>
to receive the output.
.mq-value {
font:
18px arial,
sans-serif;
font-weight: bold;
color: #88f;
padding: 0.4em;
border: 1px solid #dde;
}
Result Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3