Contents

조회 수 7474 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

IMG 태그 안에 삽입하여 해당 이미지 사이즈를 동적으로 조정

<html>
<head>
<title>image resize</title>
<style>
body,table,tr,td {font-size:9pt;}
</style>

<script>
function img_resize(img){
    var mywidth = 200;

    if( img.width > mywidth ){
        r = mywidth / img.width;
        w = img.width * r;
        h = img.height * r;

        img.width = w;
        img.height = h;
    }
}
</script>
</head>

<body>

<table border=0 cellpadding=0 cellspacing=0>
<tr>
        <td><img src="test.jpg" border=0 onLoad="img_resize(this);"></td>
</tr>
</table>

</body>
</html>


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
741 System/OS [mysql] mysql user 생성시 ERROR 1364 hooni 2013.04.25 28507
740 System/OS 맥에서 파일공유 (윈도우,맥) file hooni 2013.04.25 37305
739 Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 19360
738 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 69515
737 Develop [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기 hooni 2013.04.23 26370
736 Develop [js] JSON 컨트롤.. 재귀호출로 값 출력하기 hooni 2013.04.23 28640
735 Develop [iphone] 파일 업로드 샘플 코드 ㅎㅎ secret hooni 2013.04.23 11120
734 Develop [node.js] 지금 하고 있는거.. file hooni 2013.04.23 26979
733 Develop [node.js] nodejs 기본 설치 hooni 2013.04.23 26256
732 Develop [iphone] 화면 전환 Portrait & Landscape Mode hooni 2013.04.23 22311
731 Develop [iphone] performSelector:withObject:afterDelay: 에 대한 내용 hooni 2013.04.23 65867
730 Develop [ios] 디렉토리 하하하.. hooni 2013.04.23 32633
Board Pagination Prev 1 ... 32 33 34 35 36 37 38 39 40 41 ... 98 Next
/ 98