Skip to content

Instantly share code, notes, and snippets.

@Dexdot
Created August 20, 2017 22:17
Show Gist options
  • Select an option

  • Save Dexdot/bf75483587ed9c2a613001ee53276990 to your computer and use it in GitHub Desktop.

Select an option

Save Dexdot/bf75483587ed9c2a613001ee53276990 to your computer and use it in GitHub Desktop.
jquery media queries
// 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