|
|
|
21년 전
|
조회 493
|
|
|
|
21년 전
|
조회 428
|
|
|
|
21년 전
|
조회 394
|
|
|
|
21년 전
|
조회 427
|
|
|
|
21년 전
|
조회 448
|
|
|
|
21년 전
|
조회 405
|
|
|
|
21년 전
|
조회 508
|
|
|
|
21년 전
|
조회 861
|
|
|
|
21년 전
|
조회 740
|
|
|
|
21년 전
|
조회 482
|
|
|
|
21년 전
|
조회 444
|
|
|
|
21년 전
|
조회 539
|
|
|
|
21년 전
|
조회 1,080
|
|
|
|
21년 전
|
조회 624
|
|
|
|
21년 전
|
조회 651
|
|
|
|
21년 전
|
조회 543
|
|
|
|
21년 전
|
조회 633
|
|
|
|
21년 전
|
조회 469
|
|
|
|
21년 전
|
조회 1,085
|
|
|
|
21년 전
|
조회 586
|
댓글 2개
<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>