matchMedia is cooler than you think

Most of you will have heard about window.matchMedia. It’s a relatively simple API that accepts a string in the form of CSS @media query.

var result = window.matchMedia('(min-width:400px)');

We can see if the media query passed currently matches by inspecting the result.matches property. Pretty dull hey…? But things get a little more interesting when we realise that the object returned is actually live.

The result.matches boolean will update whenever the media query condition matches or un-matches. Best of all we have a way of listening for when this change has occurred. Let’s have a closer look at the object returned from window.matchMedia.

The mediaList object

  • matches {Boolean} Declares whether the media query currently matches.
  • media {String} The media query string that was originally passed.
  • addListener {Function} A method to attach a callback to fire when the matches state changes.
  • removeListener {Function} A method to remove a previously registered callback.

Listening for changes

We now have means by which we can run code when the window enters or leaves declared breakpoints. This is super useful when we are building parts of our app that not only new to look different at different screen sizes, but also need to behave differently.

var media = window.matchMedia('(min-width: 500px)');

media.addListener(function(data) {
  alert('matches: ' + data.matches);
});

Demo

I whipped up a quick demo that shows how you can setup and teardown component states by responding to matchMedia callbacks.

View demo

comments powered by Disqus