js 이동 단 가로 세로 스크린 인터페이스 검 측 실현 을 판단 하 는 몇 가지 방법
// ( )
let iw = window.innerWidth,
ih = window.innerHeight;
console.log(iw, ih);
// ( , 、 )
let ow = window.outerWidth,
oh = window.outerHeight;
console.log(ow, oh);
// , ( )
let sw = window.screen.width,
sh = window.screen.height;
console.log(sw, sh);
// ( 、 、 )
let aw = window.screen.availWidth,
ah = window.screen.availHeight;
console.log(aw, ah);
// 、 、
let dow = document.documentElement.offsetWidth,
doh = document.documentElement.offsetHeight;
console.log(dow, doh);
//
let dsW = document.documentElement.scrollWidth,
dsH = document.documentElement.scrollHeight;
console.log(dsW, dsH);
// , 、
let cw = document.documentElement.clientWidth,
ch = document.documentElement.clientHeight;
console.log(cw, ch);
2.JavaScript 검 측 가로 세로 화면
// window.orientation:
window.addEventListener('resize', () => {
// 180
if (window.orientation === 180 || window.orientation === 0) {
console.log(' ')
}
// 90 90
if (window.orientation === 90 || window.orientation === -90) {
console.log(' ')
}
});
3.CSS 검 측 가로 세로 화면
/* css */
@media screen and (orientation:portrait) {
/* */
#app {
width: 100vw;
height: 100vh;
background: red;
}
}
@media screen and (orientation:landscape) {
/* */
#app {
width: 50vw;
height: 100vh;
background: green;
}
}
4.meta 태그 속성 설정
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
5.meta 태그 속성 설정 설정 앞머리&밑 에 작은 검 은 줄
<meta name="viewport" content="viewport-fit=cover" />
안전 구역 과 경계 거 리 를 설정 합 니 다.
/* , padding : */
body {
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
주:constant 함 수 는 iOS<11.2 시,env 는 iOS>=11.2 시 에 유효 합 니 다.여기 서 js 판단 모 바 일 가로 세로 화면 인터페이스 검 측 실현 에 관 한 몇 가지 방법 에 관 한 글 을 소개 합 니 다.더 많은 관련 js 모 바 일 가로 화면 인터페이스 검 측 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.