Skip to content

Instantly share code, notes, and snippets.

@JoshuaFrontEnd
Created February 12, 2018 02:17
Show Gist options
  • Save JoshuaFrontEnd/fb84c74ab5e3189d92c468b8e03c2b8d to your computer and use it in GitHub Desktop.
Save JoshuaFrontEnd/fb84c74ab5e3189d92c468b8e03c2b8d to your computer and use it in GitHub Desktop.
Funcion que permite ejecutar funciones dependiendo del ancho de la ventana emulando el comportamiento de las media queries de CSS al hacer resize
(function (window, document, undefined) {
'use strict';
// Initialize the media query
var mediaQuery = window.matchMedia('(min-width: 560px)');
// Add a listen event
mediaQuery.addListener(doSomething);
// Function to do something with the media query
function doSomething(mediaQuery) {
if (mediaQuery.matches) {
document.body.style.backgroundColor = 'CornflowerBlue';
} else {
document.body.style.backgroundColor = 'FireBrick';
}
}
// On load
doSomething(mediaQuery);
// Modernizr
//window.addEventListener('resize', function() {
// if (Modernizr.mq('(min-width: 560px)')) {
// document.body.style.backgroundColor = 'CornflowerBlue';
// } else {
// document.body.style.backgroundColor = 'FireBrick';
// }
//}, false);
})(window, document);
//https://codepen.io/svinkle/pen/owmgy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment