팝업창을 브라우저 해상도 구분없이 항상 중앙에 띄우기 입니다.
// 팝업창 중앙으로 위치
function center(){
var x,y;
if (self.innerHeight) { // IE 외 모든 브라우저
x = (screen.Width - self.innerWidth) / 2;
y = (screen.Height - self.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 브라우저( IE < 6)
x = (screen.Width - document.body.clientWidth) / 2;
y = (screen.Height - document.body.clientHeight) / 2;
}
window.moveTo(x,y);
}
// 사용시 : 팝업 스크립트나 팝업파일의 가장 하단에
<script type="text/javascript" language="JavaScript">
<!--
center();
//-->
</script>
댓글 1개
9년 전
좋은 소스를 많이 올리시네요 감사합니다 : )
게시글 목록
| 번호 | 제목 |
|---|---|
| 11913 | |
| 20339 | |
| 11912 | |
| 11909 |
JavaScript
Ajax 로 받은 Json 값을 View 형식에 맞춰 표현
2
|
| 11908 | |
| 11890 | |
| 11887 | |
| 11886 | |
| 17743 | |
| 11885 |
MySQL
MYSQL 쿼리순서, 부하여부 질문드려요
|
| 17742 | |
| 11884 | |
| 11883 | |
| 20338 | |
| 11880 |
node.js
mysql 연결 방법 2가지
2
|
| 11876 |
JavaScript
한글로 된 숫자를 아라비아 숫자로 변환
3
|
| 11874 | |
| 11873 | |
| 20334 | |
| 11872 |
jQuery
제이쿼리로 이미지 회전 시키기
|
| 11869 |
jQuery
구형 익스에서 HTML5 적용시키기
2
|
| 11867 |
jQuery
특정 레이어 높이 100% 잡는 법
1
|
| 20333 | |
| 11865 |
jQuery
모바일 해상도에 맞게 이미지 출력
1
|
| 11864 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기