자바 스크립트를 사용하여 웹 페이지에서 모든 모바일 장치의 화면 크기를 동적으로 가져와야합니다. (하지 진짜 768 X 1024) 980 × 1080 :자바 스크립트에서 iPad 화면 너비를 얻는 방법
//get window's size
if (document.body && document.body.offsetWidth) {
windowsWidth = document.body.offsetWidth;
windowsHeight = document.body.offsetHeight;
}
if (document.compatMode=='CSS1Compat' &&
document.documentElement &&
document.documentElement.offsetWidth) {
windowsWidth = document.documentElement.offsetWidth;
windowsHeight = document.documentElement.offsetHeight;
}
if (window.innerWidth && window.innerHeight) {
windowsWidth = window.innerWidth;
windowsHeight = window.innerHeight;
}
을하지만 아이 패드에 나는이 크기를 얻을 :
나는이 시도했다.
감사 마우로
여기,이 답변을 참조하십시오 : http://stackoverflow.com/q/6850164/1291428 – Sebas
창 크기 **! = ** 화면의 해상도. – gdoron
화면 개체를 사용해 보셨습니까? – Zaffy