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
번호 분류 제목 글쓴이 날짜 조회 수
693 Develop [pdf] C++ 국제 표준 문서 file hooni 2013.04.23 7320
692 Develop [pdf] C 국제 표준 문서 file hooni 2013.04.23 6776
691 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6456
690 Develop [doc] C++언어 문법 설명서 file hooni 2013.04.23 6192
689 Develop [chm] 비주얼 C++ 팁 모음 문서 file hooni 2013.04.23 7518
688 Develop [pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming) file hooni 2013.04.23 6866
687 Develop [chm] 윈도우즈에서 디버깅 기법(Debugging Applications) file hooni 2013.04.23 7546
686 Develop [chm] C++ 문법 가이드 file hooni 2013.04.23 7966
685 Develop [pdf] 포인터 문법 정리 (C pointer) file hooni 2013.04.23 7139
684 Develop [chm] Programming Applications for Microsoft Windows file hooni 2013.04.23 7278
683 Develop [c] Unix Domain Socket 을 이용한 IPC hooni 2013.04.23 8038
682 Develop [c++] 쓰레드(Thread) 객체의 사용 hooni 2013.04.23 8604
Board Pagination Prev 1 ... 36 37 38 39 40 41 42 43 44 45 ... 98 Next
/ 98