Contents

Views 7492 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. [c] 간단한 순위 루틴.. (질문에 대한 답변)

    Date2003.04.23 CategoryDevelop Byhooni Views7494
    Read More
  2. [js] 이미지 사이즈를 동적으로 조절..

    Date2013.04.23 CategoryDevelop Byhooni Views7492
    Read More
  3. [c] 파일(File) 관련 함수 샘플 코드

    Date2003.04.23 CategoryDevelop Byhooni Views7481
    Read More
  4. [c] 더블(이중) 연결리스트 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views7481
    Read More
  5. [c] 격자 직사각형 넓이 구하기

    Date2013.04.23 CategoryDevelop Byhooni Views7480
    Read More
  6. [js] 부모창에서 자식창으로 문자열 전달..

    Date2013.04.23 CategoryDevelop Byhooni Views7475
    Read More
  7. [jsp] 유효성체크(Client, Server 에서)

    Date2003.04.23 CategoryDevelop Byhooni Views7461
    Read More
  8. [c++] MFC 모든 헤더와 라이브러리 설명 | [교류]Programming

    Date2013.04.23 CategoryDevelop Byhooni Views7458
    Read More
  9. [php] gd 프로그램.. htm 파일.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7457
    Read More
  10. [c] 암호화 알고리즘 DES 구현 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7449
    Read More
  11. [c] 지폰(gphone) 소스.. 수정(암호화)

    Date2013.04.23 CategoryDevelop Byhooni Views7443
    Read More
  12. [c] 단기과정[01/07] 제어문, 피보나치수열

    Date2003.04.23 CategoryDevelop Byhooni Views7435
    Read More
Board Pagination Prev 1 ... 34 35 36 37 38 39 40 41 42 43 ... 71 Next
/ 71