function redirectPage() {
const isMobile = /Mobi|Android|iPhone|iPad/i.test(navigator.userAgent);
const isLandscape = window.matchMedia("(orientation: landscape)").matches;
if (isMobile && isLandscape) {
window.location.href = "mobile-landscape.html"; // 모바일 가로용 페이지
} else if (!isMobile) {
window.location.href = "desktop.html"; // PC용 페이지
} else {
window.location.href = "mobile.html"; // 모바일 세로용 페이지
}
}
// 페이지 로드 시 실행
redirectPage();
// 화면 크기 변경 시 다시 체크 (예: 모바일에서 가로/세로 전환)
window.addEventListener("resize", redirectPage);
'2025/04'에 해당되는 글 2건
- 2025.04.03 모바일 페이지, pc 페이지 구분
- 2025.04.03 2d to 3d