티스토리 뷰
// responsive event
let mql = window.matchMedia("screen and (max-width: 768px)");
if (mql.matches) {
console.log('모바일');
} else {
console.log('데스크탑');
}
// resize event
let mql = window.matchMedia("screen and (max-width: 768px)");
mql.addListener(function(e) {
if(e.matches) {
console.log('모바일');
} else {
console.log('데스크탑');
}
});
*참고
'WebPublisher > JavaScript & jQuery' 카테고리의 다른 글
[swiper] 스와이퍼 CDN (0) | 2024.05.10 |
---|---|
[Swiper] 스와이퍼 슬라이드 넘김 시 이벤트 (0) | 2024.03.13 |
[javaScript] 브라우저의 높이값, 너비값 가져오기 (0) | 2024.01.30 |
[javaScript] slot machine counting animation (0) | 2024.01.11 |
[javaScript] counting flip animation (1) | 2024.01.11 |
공지사항