Created
August 20, 2017 22:17
-
-
Save Dexdot/bf75483587ed9c2a613001ee53276990 to your computer and use it in GitHub Desktop.
jquery media queries
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 queries | |
| var handleMatchMedia = function (mediaQuery) { | |
| if (mediaQuery.matches) { | |
| $('.platform-feature.slideInDown').removeClass('slideInDown').addClass('slideInLeft'); | |
| $('.platform-feature.slideInUp').removeClass('slideInUp').addClass('slideInRight'); | |
| } | |
| }; | |
| mql = window.matchMedia('all and (max-width: 594px)'); | |
| handleMatchMedia(mql); | |
| mql.addListener(handleMatchMedia); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment