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
번호 분류 제목 글쓴이 날짜 조회 수
445 Develop [c++] winsock을 이용한 서버,클라이언트와 ssl서버,클라이언트 file hooni 2013.04.23 7636
444 Develop [c] OpenGL 관측점 이동 hooni 2003.04.23 7638
443 Develop [js] 자바스크립트와 정규표현식 메뉴얼 (chm 형식) file hooni 2013.04.23 7638
442 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift) file hooni 2016.03.23 7651
441 Develop [c#]업글 뉴 툴바 개인적으로 만든거.. (new) ㅋㅋ secret hooni 2013.04.23 7651
440 Develop [js] 핫키(단축키) 구현방법 hooni 2003.04.23 7652
439 Develop [java] 파일 라인수 계산하는 프로그램 (하위 디렉토리까지..) file hooni 2013.04.23 7658
438 Develop [c#] BFilter 툴바 소스 코드 ㅎㅎ file hooni 2013.04.23 7661
437 Develop [php] 자바스크립트 개판 만들기.. file hooni 2013.04.23 7675
436 Develop SVN 초간단 사용하기 hooni 2014.02.28 7677
435 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 7680
434 Develop [c] 구조체 배열 예제 (학생 성적 계산) file hooni 2013.04.23 7684
Board Pagination Prev 1 ... 29 30 31 32 33 34 35 36 37 38 ... 71 Next
/ 71