Contents

조회 수 7484 댓글 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. [php] 데이터를 엑셀,워드 형태로 변환할 때 헤더(ms-office)

    Date2013.04.23 CategoryDevelop Byhooni Views7501
    Read More
  2. [chm] 비주얼 C++ 팁 모음 문서

    Date2013.04.23 CategoryDevelop Byhooni Views7512
    Read More
  3. [c] 시어핀스키 가스킷..(p.582, A.2 - 두번째)

    Date2003.04.23 CategoryDevelop Byhooni Views7518
    Read More
  4. [chm] 윈도우즈에서 디버깅 기법(Debugging Applications)

    Date2013.04.23 CategoryDevelop Byhooni Views7532
    Read More
  5. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)

    Date2016.03.23 CategoryDevelop Byhooni Views7547
    Read More
  6. [php] 웹 응용프로그램(engines) 모음

    Date2013.04.23 CategoryDevelop Byhooni Views7549
    Read More
  7. [c] IP 스푸핑(ip spoof) 소스 - 정리해야 함

    Date2003.04.23 CategoryDevelop Byhooni Views7565
    Read More
  8. [c++] 초간단 스택 두 가지 방식(class, struct)

    Date2013.04.23 CategoryDevelop Byhooni Views7588
    Read More
  9. [c] 정수를 2진수로 변환 (재귀,비트연산)

    Date2003.04.23 CategoryDevelop Byhooni Views7598
    Read More
  10. [c] 소켓 스트림 서버/클라이언트 (UDP)

    Date2013.04.23 CategoryDevelop Byhooni Views7606
    Read More
  11. HTTPS와 SSL 인증서

    Date2014.03.11 CategorySystem/OS Byhooni Views7613
    Read More
  12. [js] 비만 지수 측정(BMI) ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views7619
    Read More
Board Pagination Prev 1 ... 37 38 39 40 41 42 43 44 45 46 ... 98 Next
/ 98