Contents

조회 수 7477 댓글 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>


?

  1. [js] 윤동이가 만든 영어 학습(?) 프로그램

  2. [js] 이미지 미리 로딩하기

  3. [js] 이미지 사이즈를 동적으로 조절..

  4. [js] 이벤트 전파 3단계

  5. [js] 이벤트 핸들러(Event Handlers)

  6. [js] 인터넷 주소(URL) 인코딩 ㅋㅋ

  7. [js] 자바스크립트 escape()를 PHP로 받기

  8. [js] 자바스크립트 메뉴얼 사이트.. ㅋㅋ

  9. [js] 자바스크립트 이벤트 핸들..

  10. [js] 자바스크립트(Javascript) 코드를 동적으로 삽입하는 방법..

  11. [js] 자바스크립트로 만든 게임

  12. [js] 자바스크립트로 응용프로그램 실행 ㅎㅎ

Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 98 Next
/ 98