묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
새창띄울때.. 정중앙으로 오게하려면? (검색후 질문드립니다)
2003.05.13 00:54
<script language="JavaScript">
function OpenNewWindow(window) {
open (window,"NewWindow","left=null,top=null, toolbar=auto, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, Width=640, height=480");
}
</script>
============
이런 스크립을 씁니다..
검색결과에 나온 모든것 (screen.width-width)/2; 이런거
left top에 모두 너어봤는데도 정중아에 오질않네요..
저 문제점이뭐죠? 알려주세요..
function OpenNewWindow(window) {
open (window,"NewWindow","left=null,top=null, toolbar=auto, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, Width=640, height=480");
}
</script>
============
이런 스크립을 씁니다..
검색결과에 나온 모든것 (screen.width-width)/2; 이런거
left top에 모두 너어봤는데도 정중아에 오질않네요..
저 문제점이뭐죠? 알려주세요..
댓글 4
-
행복한고니
2003.05.13 02:55
-
SSo.Q-_-)/
2003.05.13 07:37
<script language="JavaScript">
function OpenNewWindow(window) {
x=(screen.width - 640)/2
y=(screen.height - 480)/2
open (window,"NewWindow","left=x", "top=y", "toolbar=auto", "location=no", "directories=no", "status=no", "menubar=no", "scrollbars=no, resizable=no, Width=640, "height=480");
}
</script>
이f렇게 써도 안되네요 ㅠㅠ; -
sundew
2003.05.13 08:23
<script language="JavaScript">
function popUp(URL,popupWidth,popupHeight) {
var posX=((screen.width-popupWidth)/2);
var posY=((screen.height-popupHeight)/2);
alert('width='+popupWidth+', height='+popupHeight+', posX='+posX+', posY='+posY);
window.open(URL, 'popupID', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+popupWidth+',height='+popupHeight+',left='+posX+',top='+posY+'');
}
</script>
<body onLoad="popUp('http://www.google.com',400,200);"></body>
[http://m-player.wo.to] -
RedEye
2003.05.13 13:22
링크식 새창 가운데 띄우기
<script language="JavaScript">
<!--
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->
</script>
<head>
<body>
<a href="http://kr.yahoo.com" onclick="NewWindow(this.href,'name','400','400','yes');return false;">야후!</a>
창 옵션은 위에서 참조후 아래 이벤트 (~)사이에 삽입 (가로,세로,위,왼쪽,스크롤,리사이즈)
(screen.width - 640)/2
-_-;;