팝업창 화면 가운데 띄우기
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,294회 작성일 17-09-05 15:43본문
function center(){
var x,y;
if(window.innerHeight){ // IE 외 모든 브라우저
x = (screen.width - window.innerWidth) / 2;
y = (screen.height - window.innerHeight) / 2;
}else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict 모드
x = (screen.width - document.documentElement.clientWidth) / 2;
y = (screen.height - document.documentElement.clientHeight) / 2;
}else if (document.body) { // 다른 IE 브라우저
x = (screen.width - document.body.clientWidth) / 2;
y = (screen.height - document.body.clientHeight) / 2;
}
window.moveTo(x,y);
}
댓글목록
등록된 댓글이 없습니다.