해상도에 따라 다른 문서열리기
2009.09.08 23:53:09
<html>
<head>
<title>..</title>
<meta
http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script
language="JavaScript">
<!--
function redirectPage() {
var
url800x600 = "main1.html"; //800*600 에서 열릴문서
var url1024x768 = "main2.html";
//1024*768 에서 열릴문서
var url1152x864 = "main3.html"; //1152*864 에서 열릴문서
if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024)
&& (screen.height == 768))
window.location.href= url1024x768;
else
if ((screen.width == 1152) && (screen.height ==
864))
window.location.href= url1152x864;
else window.location.href=
url800x600;
}
//-->
</script>
</head>
<body
Onload="redirectPage()">
</body>
</html>
자료 출처 : 모디
댓글 0
댓글 쓰기 권한이 없습니다.
9 | 즐겨찾기 추가 소스 | 2009.09.08 |
8 | 소스막기 소스보기 | 2009.09.08 |
7 | 이미지 링크시 점선 안보이게 | 2009.09.08 |
> | 해상도에 따라 다른 문서열리기 | 2009.09.08 |
5 | 웹페이지에 동양상 띄우기 | 2009.09.08 |
4 | 이미지 트랜지션 | 2009.09.08 |
3 | 테이블에 스크롤바 생성하기 | 2009.09.05 |
2 | 배경이미지 시간타임으로 변함 | 2009.09.05 |
1 | 표에 그라데이션 넣기 | 2009.09.05 |