Contents

조회 수 7498 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
469 Develop [unix] Java 애플릿용 HTML 자동 생성 hooni 2014.02.19 8268
468 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 8266
467 Develop [c] 그래픽 차트 라이브러리.. 나중에 확인 해볼 거.. file hooni 2013.04.23 8240
466 Develop [vb] 64bit RSA 프로그램 소스 ㅋㅋ file hooni 2013.04.23 8233
465 Develop [c] 스토리지 클래스(변수) hooni 2003.04.23 8221
464 Develop [c] 프로그래밍 ppt, 스킬업 (비트 수업자료) file hooni 2003.04.23 8217
463 Develop [c] 가위 바위 보 서버, 클라이언트 소스코드 file hooni 2003.04.23 8216
462 Develop [c#] 본현이형 논문 자료 (HIDS)ㅋㅋ file hooni 2013.04.23 8194
461 Develop [c] 간단한 소켓 프로그래밍 샘플 file hooni 2013.04.23 8187
460 Develop [jsp] 페이지에 한글이 정상적으로 보이지 않을 때.. hooni 2013.04.23 8175
459 Develop [js] 주민번호 생성기.. file hooni 2003.04.23 8175
458 Develop [c] GD라이브러리 설치 테스트 소스 file hooni 2013.04.23 8168
Board Pagination Prev 1 ... 27 28 29 30 31 32 33 34 35 36 ... 71 Next
/ 71