창 사이즈 window resize
2010. 11. 2. 09:25ㆍ99. 정리전 - IT/11. Java
출처
http://www.relation.co.kr/board/board_view.php?board_id=system&board=board_system_script&code=&page=3&no=5&subno=
<html>
<head>
<title>Untitled</title>
<script language="JavaScript">
function size_return(){
or_width = document.all.popsize.style.width;//레이어의 width값 구하기
or_height = document.all.popsize.style.height;//레이어의 height값 구하기
len_width = or_width.length-2;
len_height = or_height.length-2;
or_width = or_width.substring(0,len_width);//레이어의 width값 에서 px 제거
or_height = or_height.substring(0,len_height);//레이어의 height값 에서 px 제거
cu_width = (or_width-0) + 10; //추가 width값 조정
cu_height = (or_height-0) + 29; // 추가 height값 조정
self.resizeTo(cu_width,cu_height);
n_height = or_height - document.body.clientHeight; //버젼별로 창사이즈가 틀린경우 크기값 보정
n_width = or_width - document.body.clientWidth;
self.resizeTo((cu_width + n_width),(cu_height + n_height));
}//function
</script>
</head>
<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" onload="size_return();window.focus();">
<div id="popsize" style="width:300;height:300;background:#aaaaaa;text-align:center;padding:0;">
<table border="1" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td height="*">
</td>
</tr>
<tr>
<td height="50">버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳</td>
</tr>
</table>
</div>
</body>
</html>
http://www.relation.co.kr/board/board_view.php?board_id=system&board=board_system_script&code=&page=3&no=5&subno=
<html>
<head>
<title>Untitled</title>
<script language="JavaScript">
function size_return(){
or_width = document.all.popsize.style.width;//레이어의 width값 구하기
or_height = document.all.popsize.style.height;//레이어의 height값 구하기
len_width = or_width.length-2;
len_height = or_height.length-2;
or_width = or_width.substring(0,len_width);//레이어의 width값 에서 px 제거
or_height = or_height.substring(0,len_height);//레이어의 height값 에서 px 제거
cu_width = (or_width-0) + 10; //추가 width값 조정
cu_height = (or_height-0) + 29; // 추가 height값 조정
self.resizeTo(cu_width,cu_height);
n_height = or_height - document.body.clientHeight; //버젼별로 창사이즈가 틀린경우 크기값 보정
n_width = or_width - document.body.clientWidth;
self.resizeTo((cu_width + n_width),(cu_height + n_height));
}//function
</script>
</head>
<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" onload="size_return();window.focus();">
<div id="popsize" style="width:300;height:300;background:#aaaaaa;text-align:center;padding:0;">
<table border="1" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td height="*">
</td>
</tr>
<tr>
<td height="50">버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳<br>버튼 들어가는 곳</td>
</tr>
</table>
</div>
</body>
</html>