search
HomeWeb Front-endJS TutorialHow to use Media Queries in JavaScript with matchMedia

How to use Media Queries in JavaScript with matchMedia

Core points

  • The media queries originally used for responsive design in CSS can also be used in JavaScript to adjust content or functionality based on device characteristics such as screen size, resolution, and orientation.
  • The window.matchMedia API in JavaScript allows detection of CSS3 media query status changes. It returns a MediaQueryList object that can be used to determine if a specific media query matches the current device and can add an event listener in response to changes.
  • JavaScript media queries are widely supported in modern browsers and provide a reliable way to create responsive designs. They can be used in conjunction with CSS media queries, and various libraries such as Enquire.js and matchMedia.js can simplify the process of writing and managing these queries.

This article was written in 2011 and updated in 2018. When responsive design was first introduced, it was one of the most exciting concepts of web layout since CSS took the representation grid. The underlying technology uses media queries to determine the type, width, height, orientation, resolution, aspect ratio, and color depth of viewing devices to provide different style sheets. If you think responsive design is limited to CSS layouts, you'll be happy to hear that media queries can also be used in JavaScript, which will be explained in this article.

Media Query in CSS

In the following example, cssbasic.css is provided to all devices. However, if the horizontal width of the screen is 500 pixels or more, it will also be sent csswide.css:

<link rel="stylesheet" media="all" href="cssbasic.css" />
<link rel="stylesheet" media="(min-width: 500px)" href="csswide.css" />

The possibilities are endless, and the technology has been used for a long time by most websites on the Internet. Adjusting the size of the browser width will trigger changes in the page layout. Today, using media queries makes it easy to resize designs or elements in CSS. But what if you need to change content or features? For example, on smaller screens, you might want to use shorter titles, fewer JavaScript libraries, or modify operations of widgets. The viewport size can be analyzed in JavaScript, but this is a bit confusing:

  • Most browsers support window.innerWidth and window.innerHeight. (The weird mode versions before IE 10 require document.body.clientWidth and document.body.clientHeight.)
  • window.onresize
  • All major browsers support document.documentElement.clientWidth and document.documentElement.clientHeight, but it is inconsistent. Depending on the browser and mode, the size of the window or document will be returned.

Even if you successfully detect changes in viewport size, you must calculate factors such as direction and aspect ratio yourself. There is no guarantee that it matches the browser's assumption when applying media query rules in CSS.

How to write media queries using JavaScript code

Luckily, it is possible to respond to changes in CSS3 media query status in JavaScript. The key API is window.matchMedia. This will pass the same string as the media query string used in CSS media query:

<link rel="stylesheet" media="all" href="cssbasic.css" />
<link rel="stylesheet" media="(min-width: 500px)" href="csswide.css" />
The

matches attribute returns true or false based on the query result. For example:

const mq = window.matchMedia("(min-width: 500px)");

You can also add an event listener that fires when a change is detected:

if (mq.matches) {
  // 窗口宽度至少为 500 像素
} else {
  // 窗口宽度小于 500 像素
}

You should also call the handler directly after defining the event. This will ensure that your code can be initialized itself during or after page loading. Without it, WidthChange() will never be called if the user has not changed the browser size. At the time of writing, matchMedia has excellent browser support in every way, so there is no reason not to use it in a production environment. Check out the following demonstration text to change dynamically from "More than 500 pixels" to "less than 500 pixels" depending on your browser window size. Or, download the sample code: CodePen demo link

Frequently Asked Questions about JavaScript Media Query (FAQ)

(The FAQ section should be preserved and improved here to make it more concise and clearer and use a clearer format.) I cannot rewrite the FAQ section in full due to space limitations, but here are some Improvement suggestions:

  • Use more concise language: Avoid redundant explanations.
  • Use a clearer format: Use lists or tables to organize questions and answers.
  • More accurate answers: Ensure the answer is accurate and avoid vague expressions.
  • Add sample code: Provides short code examples for more technical issues.

With the above improvements, the FAQ part can be made easier to read and understand.

The above is the detailed content of How to use Media Queries in JavaScript with matchMedia. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Custom Google Search API Setup TutorialCustom Google Search API Setup TutorialMar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

What is 'this' in JavaScript?What is 'this' in JavaScript?Mar 04, 2025 am 01:15 AM

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),