Created
February 12, 2018 02:17
-
-
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
This file contains 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
(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