<script type="text/javascript">
function zoomInOut(flag){
var img = document.getElementById("popupImg"); //사이즈 변경할 이미지 객체
var currentWidth = img.width;
var currentHeight= img.height;
var newWidth=0;
var newHeight=0;
if(flag=="in"){
newWidth=parseInt(currentWidth*1.3);
newHeight=parseInt(currentHeight*1.3);
}else if(flag="out"){
newWidth=parseInt(currentWidth*0.7);
newHeight=parseInt(currentHeight*0.7);
}
img.width=newWidth; //변경 할 사이즈 적용
img.height=newHeight; //변경 할 사이즈 적용
window.resizeTo(newWidth+40, newHeight+40); //해당팝업창 사이즈 재조정
}
</script>
해당팝업 사이즈 재종하는 부분도 값을 받아서 하고 싶었으나
현재 팝업 사이즈를 가져오는 방법이 잘못된건지 가져와지지 않아서
이미지사이즈 보다 더해준 값 만큼만 더 크게 설정함.
현재 팝업창 사이즈 가져오는 코드는 댓글 좀 부탁드리겠습니다.
'프로그래밍 > JavaScript' 카테고리의 다른 글
구글맵 적용 히기 + 주소로 입력시 위도경도 알아서 확인 + 구청적용 파일 추가(2013/10/04) (1) | 2013.09.10 |
---|---|
구글맵 사용법 (0) | 2013.09.10 |
javascript 롤링(배너등) (0) | 2013.08.19 |
자바스크립트 새로고침 종류 (0) | 2013.08.01 |
자바스크립트에서 주민등록번호를 이용하여 만 나이구하고 비교하기 (0) | 2013.08.01 |