Contents

조회 수 7484 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
409 Develop [js] 자바스크립트 이벤트 핸들.. hooni 2003.04.23 7935
408 Develop [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ secret hooni 2013.04.23 7948
407 Develop [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI) file hooni 2013.04.23 7949
406 Develop [c++] 트리컨트롤 스텝 3 예제.. file hooni 2013.04.23 7953
405 Develop [chm] C++ 문법 가이드 file hooni 2013.04.23 7955
404 Develop [c++] Win32API를 이용한 ExitWindowsEx 사용한 예제코드 hooni 2013.04.23 7979
403 Develop [doc] Equation Solving에 대한 발표자료.. file hooni 2013.04.23 7987
402 Develop [c] 퀵정렬(quick sort) 예제 소스.. file hooni 2013.04.23 7989
401 Develop [c] 문자열 처리 관련 함수들 설명 hooni 2003.04.23 8006
400 Develop [c] 자료구조 그래프(graph) 소스코드 - 확인해볼 것.. file hooni 2013.04.23 8006
399 Develop 논문에 들어갈 툴바 테스트 해볼 것.. secret hooni 2013.04.23 8013
398 Develop [java] RGB코드를 HEX코드로 변환하는 코드 ㅎㅎ hooni 2013.04.23 8018
Board Pagination Prev 1 ... 32 33 34 35 36 37 38 39 40 41 ... 71 Next
/ 71