<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>


해당팝업 사이즈 재종하는 부분도 값을 받아서 하고 싶었으나

현재 팝업 사이즈를 가져오는 방법이 잘못된건지 가져와지지 않아서

이미지사이즈 보다 더해준 값 만큼만 더 크게 설정함.


현재 팝업창 사이즈 가져오는 코드는 댓글 좀 부탁드리겠습니다.

+ Recent posts