사이트 내 전체검색
팝업창을 브라우저 해상도 구분없이 항상 중앙에 띄우기
로빈아빠
https://cmd.kr/javascript/154 URL이 복사되었습니다.

본문

// 팝업창 중앙으로 위치
function center(){
var x,y;
if (self.innerHeight) { // IE 외 모든 브라우저
x = (screen.availWidth - self.innerWidth) / 2;
y = (screen.availHeight - self.innerHeight) / 2;
}else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict 모드
x = (screen.availWidth - document.documentElement.clientWidth) / 2;
y = (screen.availHeight - document.documentElement.clientHeight) / 2;
}else if (document.body) { // 다른 IE 브라우저( IE < 6)
x = (screen.availWidth - document.body.clientWidth) / 2;
y = (screen.availHeight - document.body.clientHeight) / 2;
}
window.moveTo(x,y);
}

// 사용시 : 팝업 스크립트나 팝업파일의 가장 하단에
<script type="text/javascript" language="JavaScript">
<!--
center();
//-->
</script>

출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=jt&wr_id=96

댓글목록

등록된 댓글이 없습니다.

831 (4/17P)

Search

Copyright © Cmd 명령어 3.129.23.28