본문 바로가기

JS/javascript

[javascript] media query

728x90
반응형
if (window.matchMedia('(max-width: 768px)').matches)
{
    // do functionality on screens smaller than 768px
}

$(window).resize(function() {
  if ($(this).width() < 1024) {
	// your code
  } else {
    // your code
  }
});
728x90
반응형