Contents

조회 수 7476 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
501 Develop [c] 파일(File)의 연결과 연결 해제 (link, unlink, chown) hooni 2013.04.23 9545
500 Develop [c++] 링크리스트(linked list) 클래스(스택,큐) file hooni 2003.04.23 9553
499 Develop [c++] 마방진 소스코드 file hooni 2013.04.23 9558
498 Develop [js] Closure를 이용해 캡슐화.. hooni 2013.12.16 9596
497 Develop [c] 이진트리(binary tree)의 특성 file hooni 2003.04.23 9610
496 Develop OpenGL 강좌 사이트 모음 hooni 2013.04.23 9640
495 Develop [c] 오목.. 간단한 소스 ㅋㅋ file hooni 2013.04.23 9658
494 Develop [php] 자주 쓰는 PHP 함수와 예제 hooni 2013.04.23 9705
493 Develop [c++]현승이가 보내준 동영상 암호화 자료.. 볼것.. file hooni 2003.04.23 9729
492 Develop [js] 자바스크립트로 응용프로그램 실행 ㅎㅎ hooni 2003.04.23 9812
491 Develop [php] 니우쪽지다.. 받아라~ ^^ file hooni 2003.04.23 9835
490 Develop [c] 간단한 링크드 리스트(linked list) 자료형 예제.. hooni 2003.04.23 9841
Board Pagination Prev 1 ... 52 53 54 55 56 57 58 59 60 61 ... 98 Next
/ 98