묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
새창띄우는거 7일째 소스찾는데요 냉유 필독!
2003.02.17 00:45
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
<script LANGUAGE="Javascript">
<!--
function openwindow(opage, x, y) {
farwindow =
window.open('','Links','width='+x+', height='+y+', toolbar=0, scrollbars=0, resizable=no');
if (farwindow != null) {
if (farwindow.opener == null) {
farwindow.opener = self;
}
farwindow.location.href = opage;
}
}
//-->
</script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<a href="javascript:openwindow('http://hobbang.co.kr/banner.html', 470, 230)">새창 떠라</a>
</body>
</html>
이걸 구했는데요..
정가운데.. 가로 세로 정가운데로 위치시키게 하고싶어요!! 모든 픽셀에서 볼때도 마찬가지로 정가운데요^^
어떻게해야하죠.. 위 소스대로 열경우 왼쪽 최상단에 위치하여 뜹니다.
또.. 최대화버튼을 아에 없애버리는건 가능한가요?
답변 제발 꼭좀 부탁드립니다..
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
<script LANGUAGE="Javascript">
<!--
function openwindow(opage, x, y) {
farwindow =
window.open('','Links','width='+x+', height='+y+', toolbar=0, scrollbars=0, resizable=no');
if (farwindow != null) {
if (farwindow.opener == null) {
farwindow.opener = self;
}
farwindow.location.href = opage;
}
}
//-->
</script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<a href="javascript:openwindow('http://hobbang.co.kr/banner.html', 470, 230)">새창 떠라</a>
</body>
</html>
이걸 구했는데요..
정가운데.. 가로 세로 정가운데로 위치시키게 하고싶어요!! 모든 픽셀에서 볼때도 마찬가지로 정가운데요^^
어떻게해야하죠.. 위 소스대로 열경우 왼쪽 최상단에 위치하여 뜹니다.
또.. 최대화버튼을 아에 없애버리는건 가능한가요?
답변 제발 꼭좀 부탁드립니다..
function open_win( url, width, height ) {
window.open(url, "pop", "left=" + (window.screen.availWidth - width)/2 + ",top=" + (window.screen.availHeight - height)/2 + ",fullscreen=no,titlebar=no,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + width + ",height=" + height);
}
open_win( 'http://miplus.net', 100, 100 );
</script>