Contents

조회 수 7489 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
385 Develop [ios] Objective-C 문자열 조작 메서드 hooni 2013.04.23 26495
384 Develop [ios] Objective-C 에서 자주 사용하는 수학 함수와 유용한 Define hooni 2014.08.08 1986
383 Develop [ios] Objective-C 특정 문자 찾아 제거하기 hooni 2013.04.23 28102
382 Develop [ios] Objective-C 프로퍼티의 ATOMIC / NONATOMIC 속성 hooni 2014.03.17 3040
381 Develop [ios] Objective-C 프로퍼티의 strong, weak, assign file hooni 2014.03.17 4738
380 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 14578
379 Develop [ios] Objective-C에서 형식이 있는 문자열(Format Strings)에 사용할 수 있는 토큰들(Tokens) file hooni 2013.04.23 18830
378 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16976
377 Develop [ios] Pod 특정 버전 설치하고 사용하기 hooni 2022.05.28 1757
376 Develop [ios] Random Thoughts: Rand() vs. arc4random() hooni 2013.10.31 68115
375 Develop [ios] Requesting Location Permissions in iOS file hooni 2018.08.18 1726
374 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 758
Board Pagination Prev 1 ... 34 35 36 37 38 39 40 41 42 43 ... 71 Next
/ 71