Contents

Views 7499 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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] 자바스크립트 이벤트 핸들..

    Date2003.04.23 CategoryDevelop Byhooni Views7945
    Read More
  2. [js] 자바스크립트 메뉴얼 사이트.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7433
    Read More
  3. [js] 자바스크립트 escape()를 PHP로 받기

    Date2013.04.23 CategoryDevelop Byhooni Views6001
    Read More
  4. [js] 인터넷 주소(URL) 인코딩 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views11382
    Read More
  5. [js] 이벤트 핸들러(Event Handlers)

    Date2003.04.23 CategoryDevelop Byhooni Views6755
    Read More
  6. [js] 이벤트 전파 3단계

    Date2013.12.18 CategoryDevelop Byhooni Views9994
    Read More
  7. [js] 이미지 사이즈를 동적으로 조절..

    Date2013.04.23 CategoryDevelop Byhooni Views7499
    Read More
  8. [js] 이미지 미리 로딩하기

    Date2003.04.23 CategoryDevelop Byhooni Views7041
    Read More
  9. [js] 윤동이가 만든 영어 학습(?) 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views6478
    Read More
  10. [js] 윈도우 시작버튼처럼 나오는 메뉴

    Date2013.04.23 CategoryDevelop Byhooni Views6765
    Read More
  11. [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기

    Date2013.11.04 CategoryDevelop Byhooni Views30132
    Read More
  12. [js] 여러가지 트리(tree) 모음.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7135
    Read More
Board Pagination Prev 1 ... 32 33 34 35 36 37 38 39 40 41 ... 98 Next
/ 98