Last active
September 21, 2018 09:47
-
-
Save andreyshr/02029de5a11c795de3e0ad9612311069 to your computer and use it in GitHub Desktop.
MediaQueries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // media query event handler | |
| if (matchMedia) { | |
| const mq = window.matchMedia("(min-width: 500px)"); | |
| mq.addListener(WidthChange); | |
| WidthChange(mq); | |
| } | |
| // media query change | |
| function WidthChange(mq) { | |
| if (mq.matches) { | |
| // window width is at least 500px | |
| } else { | |
| // window width is less than 500px | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment