window.matchmedia
-
iPad mini landscape 인식 이슈Style/CSS 2025. 6. 27. 23:01
최근 Tablet과 Mobile에서 사용 중인 landscape를 인식하는 로직에 이슈가 발생하여 확인하게 되었습니다. 해당 부분 내용을 남겨두면 좋을 것 같아 포스팅하게 되었습니다. 해결 과정기존 landscape 로직은 아래와 같습니다. device detect 관련 로직은 제외했습니다. const width = window.outerWidth; const height = window.outerHeight; const isOverLandscapeRatio = width / height > 16 / 9; const isLandscapeOrientation = screen.orientation.type.includes('landscape'); const isLandscape = isOverLa..