모니터 해상도별 페이지 이동
로빈아빠
본문
<html>
<title>모니터 해상도별 페이지 이동</title>
<head>
<script language="JavaScript">
<!--
function win_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 OnLoad="win_resolution('640*480일때 경로', '800*600일때 경로', '1024*768일때 경로', '기타일때 경로');">
....................................
</body>
</html>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=hjqa&wr_id=16
<title>모니터 해상도별 페이지 이동</title>
<head>
<script language="JavaScript">
<!--
function win_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 OnLoad="win_resolution('640*480일때 경로', '800*600일때 경로', '1024*768일때 경로', '기타일때 경로');">
....................................
</body>
</html>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=hjqa&wr_id=16
관련링크
댓글목록
등록된 댓글이 없습니다.