-
..이미지 리사이징..Web Program/javascript/jQuery 2007. 12. 14. 14:27
<?
if($file==""){
?>
<script language="javascript">
alert("선택하신 파일이 존재하지 않습니다.");
window.close();
</script>
<?
exit;
}
?><script language="javascript">
function detect_pic(pic, size, mode) {
var w=parseFloat(pic.width);
var h=parseFloat(pic.height);
var pct=0;
if(w<=size && mode=="unzoom"){
window.resizeTo(w+50, h+70);
return;
}else{
pct=size / w;
pic.width = pct * w;
pic.height = pct * h;
window.resizeTo(pic.width+40, pic.height+60);
}
}
</script>
<link href="../css.css" rel="stylesheet" type="text/css">
<body leftmargin="1" topmargin="1" marginwidth="1" marginheight="1" onLoad="detect_pic(viewpic,'500','unzoom')">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle"><img src = "/datafiles/<?=$file?>" name="viewpic" style="cursor:hand" onClick="window.close()"></td>
</tr>
</table>
</body>'Web Program > javascript/jQuery' 카테고리의 다른 글
인쇄시 페이지 나누기 (0) 2008.08.07 반드시 알아야 하는건 아니지만..알아두면 좋은것들~ (0) 2008.08.05 ..prototype[헬퍼 함수와 자바스크립트 확장] (0) 2007.08.02 ..Prototype[라이브러리 사용방법] (0) 2007.08.02 ..Prototype[라이브러리 주의사항] (0) 2007.08.02