Web_HTML2008. 5. 9. 15:23

<!-- 이미지 사진 보기(시작) -->
<script language=javascript>
<!--
function Imgview() {
document.all.tempImg.src = "";
document.all.tempImg.src = document.<%=frmbase%>.fileName.value;
}

var stateFlag = 0;
thumbnail = new Image;

function checkImgFormat(imgPath){
if ( imgPath.indexOf(".JPG") != -1 ||
imgPath.indexOf(".jpg") != -1 ) {
stateFlag = 1;
document.previewImg.src = imgPath;
}else{
stateFlag = 0;
if ( imgPath != "" )
alert("이미지 파일(.jpg) 파일이 아닙니다.");
}
}

function showImg( img_url ){
thumbnail.src = img_url;
newSize = ( 136/136 > thumbnail.width/thumbnail.height ) ? 136 / thumbnail.height : 136 / thumbnail.width;
newWidth = thumbnail.width * newSize;
chksize( img_url );
if ( thumbnail.width > newWidth )
document.previewImg.width = newWidth;
else
document.previewImg.width = thumbnail.width;
}


//이미지 사이즈가 보여질 테이블의 가로 크기보다 큰가
function chksize( img ){
var temp;
//업로드 후 이미지를 모여줄 테이블의 가로 크기
//보기 좋은 사이즈로 수정해주세요
//전체 보기를 위한 Anchor가 걸립니다.
var chk_size = 130;
temp = new Image();
temp.src=img;

if( temp.width > chk_size ){
changeSize( temp, chk_size );
}
}

function changeSize( img, val ){
// var hei=Math.round( img.height*(val/(img.width) ) );
var hei=500;
var wid=val

}

-->
</script>
<!-- 이미지 사진 보기(끝) -->

<body>

--------- 중 략 ----------

<table width="810" height="43" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right">
<img src="/images/btn_plus.gif" width="52" height="22" style="cursor:hand" onClick="fUsrAction('add');"></td>
</tr>
</table></td>
</tr>
</table>
<div id="jack" style="DISPLAY: none">
<img src="" id="tempImg">
</div>
</form>

</body>

</html>

출처 : http://blog.naver.com/promature.do?Redirect=Log&logNo=20015152593

Posted by la30321