조회 수 7500 추천 수 0 댓글 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 [c] 프로그램 코드(c/c++)를 html 파일로 변환 file hooni 2013.04.23 7696
408 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift) file hooni 2016.03.23 7694
407 Develop [c] 구조체 배열 예제 (학생 성적 계산) file hooni 2013.04.23 7691
406 Develop [php] 자바스크립트 개판 만들기.. file hooni 2013.04.23 7685
405 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 7684
404 Develop SVN 초간단 사용하기 hooni 2014.02.28 7681
403 Develop [c#] BFilter 툴바 소스 코드 ㅎㅎ file hooni 2013.04.23 7668
402 Develop [java] 파일 라인수 계산하는 프로그램 (하위 디렉토리까지..) file hooni 2013.04.23 7664
401 Develop [js] 핫키(단축키) 구현방법 hooni 2003.04.23 7654
400 Develop [c#]업글 뉴 툴바 개인적으로 만든거.. (new) ㅋㅋ secret hooni 2013.04.23 7651
399 Develop [js] 자바스크립트와 정규표현식 메뉴얼 (chm 형식) file hooni 2013.04.23 7644
398 Develop [c++] winsock을 이용한 서버,클라이언트와 ssl서버,클라이언트 file hooni 2013.04.23 7640
397 Develop [c] OpenGL 관측점 이동 hooni 2003.04.23 7639
396 Develop [js] 비만 지수 측정(BMI) ㅎㅎ file hooni 2013.04.23 7638
395 Develop [c++] 초간단 스택 두 가지 방식(class, struct) file hooni 2013.04.23 7636
394 Develop [c++] 윈도우 API 정복 예제 file hooni 2013.04.23 7634
Board Pagination Prev 1 ... 26 27 28 29 30 ... 53 Next
/ 53