The matchMedia() method returns a MediaQueryList with the results from the query. (ok)

https://www.w3schools.com/jsref/met_win_matchmedia.asp

if (window.matchMedia("(max-width: 700px)").matches) {
  console.log("aaaaaaa1");
} else {
  console.log("aaaaaaa2");
}

Last updated

Navigation

Lionel

@Copyright 2023