//viewImage.jsp ( 이미지 실제 사이즈를 보여주는 곳
<HTML>
<HEAD>
<TITLE>Fit the Pic Script</TITLE>
<script language='javascript'>
var arrTemp=self.location.href.split("?");
var picUrl = (arrTemp.length>0)?arrTemp[1]:"";
var NS = (navigator.appName=="Netscape")?true:false;
function FitPic() {
iWidth = (NS)?window.innerWidth:document.body.clientWidth;
iHeight = (NS)?window.innerHeight:document.body.clientHeight;
iWidth = document.images[0].width - iWidth;
iHeight = document.images[0].height - iHeight;
window.resizeBy(iWidth, iHeight);
self.focus();
};
</script>
</HEAD>
<BODY bgcolor="#000000" onload='FitPic();' topmargin="0"
marginheight="0" leftmargin="0" marginwidth="0" scroll="auto">
<script language='javascript'>
document.write( "<img src='" + picUrl + "' border=0 onclick=\"Javascript:self.close();\">" );
</script>
</BODY>
</HTML>
=========================================================================================
//이미지 호출하기
function PopupPic(sPicURL) {
window.open( "./viewImage.jsp?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
'DEV > HTML' 카테고리의 다른 글
엔터 값으로 실행시키기 (0) | 2011.12.05 |
---|---|
MultipartRequest 로 파일을 업로드시 중복된 파일 처리 방법 (0) | 2011.11.30 |
페이지 여백 없애기 (0) | 2011.09.20 |
이메일 주소 연동시키기 (0) | 2011.09.03 |
robots.txt 파일 만들기 (0) | 2011.07.21 |