<html>
<head>
<title>해상도별 이동시키기</title>
<script language="JavaScript">
<!--
function na_redirect_by_resolution(url_640x480, url_800x600, url_1024x768, other)
{
var url_640x480;
var url_800x600;
var url_1024x768;
if (screen.width==640||screen.height==480)
window.location!!.replace(url_640x480)
else if (screen.width == 800 ||screen.height == 600)
window.location!!.replace(url_800x600);
else if (screen.width == 1024||screen.height == 768)
window.location!!.replace(url_1024x768);
else
window.location!!.replace(other);
}
// -->
</script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" OnLoad="na_redirect_by_resolution('640*480', '800*600', '1024*768', '기타');">
<p>
<!-- 내용들어갈 자리-->
</p>
</body>
</html>
----------------------------------------------------------------------------
여기서도,, 별 다른건 수정하실것 없구요
OnLoad="na_redirect_by_resolution('640*480', '800*600', '1024*768', '기타');
이 부분을 수정해 주세요
해상도 써 놓은곳에 이동할 절대경로나 상대경로를 적어주시면 됩니다.
'인터넷정보' 카테고리의 다른 글
웹브라우저, 언어, 운영체제 보여주기 (0) | 2007.10.12 |
---|---|
클립보드로 카피하기 (0) | 2007.10.12 |
클립보드로 카피하기 (0) | 2007.10.12 |
최근 업데이트 시간을 자동으로 나타내 보자! (0) | 2007.10.12 |
최근 업데이트 시간을 자동으로 나타내 보자! (0) | 2007.10.12 |
해상도별 다른 페이지 보여주기 (0) | 2007.10.12 |
OS 별 페이지 이동하기 (0) | 2007.10.12 |
OS 별 페이지 이동하기 (0) | 2007.10.12 |
레이어의 상대위치 지정 방법(position:absolute에서...) (0) | 2007.10.12 |
레이어의 상대위치 지정 방법(position:absolute에서...) (0) | 2007.10.12 |