테스트 사이트 - 개발 중인 베타 버전입니다

자바스크립트를 이용해 모니터 해상도 구하기

· 12년 전 · 4137 · 2
<script type="text/javascript">

document.write('가로: ', screen.width, '<br />', '세로: ', screen.height, '<br />');



document.write('<br /><br />'); // 줄바꿈



if ( (screen.width == 1024) && (screen.height == 768) ) {
document.write('평균적인 해상도이군요<br />');
}
else if ( (screen.width < 1024) && (screen.height < 768) ) {
document.write('저해상도이군요.<br />');
}
else if ( (screen.width > 1024) && (screen.height > 768) ) {
document.write('고해상도이군요.<br />');
}
else
document.write('비표준 해상도군요.<br />');

< /script>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 2개

감사요~
감사합니다.

게시글 목록

번호 제목
20014
10421
10417
20006
20003
10410
10407
10392
10389
10380
10378
17596
10371
19995
10369
10366
10364
10363
10361
10357
10352
19990
10349
10343
10340