Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. document.addEventListener('DOMContentLoaded', function(){
  2.  
  3. var mobile = window.matchMedia( 'only screen and ( max-width: 640px )');
  4.  
  5. applyMobileStyles()
  6.  
  7. mobile.addListener( applyMobileStyles );
  8.  
  9. function applyMobileStyles() {
  10. if ( mobile.matches ) {
  11. document.body.style.backgroundColor = 'grey';
  12. console.log('mobile');
  13. } else {
  14. document.body.style.backgroundColor = 'grey';
  15. }
  16. }
  17. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement