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. [ios] Touch ID 적용 샘플 코드 (예제)

    Date2015.02.23 CategoryDevelop Byhooni Views747
    Read More
  2. [ios] UDID 사용 제한에 따른 대안들

    Date2014.03.13 CategoryDevelop Byhooni Views4003
    Read More
  3. [ios] UDID와 UUID (디바이스의 Unique Identifier)

    Date2013.04.23 CategoryDevelop Byhooni Views27372
    Read More
  4. [ios] UIAlertView 초간단 샘플 ㅎㅎ

    Date2013.10.14 CategoryDevelop Byhooni Views46161
    Read More
  5. [ios] UIButton multi-line iOS7

    Date2014.01.09 CategoryDevelop Byhooni Views11455
    Read More
  6. [ios] UIColor 지정에서 RGB define ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views22953
    Read More
  7. [ios] UILabel top alignㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views22880
    Read More
  8. [ios] UITableView 특정 Row만 Update

    Date2014.04.08 CategoryDevelop Byhooni Views4824
    Read More
  9. [ios] UIView에서 상위 UIViewController 가져오기

    Date2013.09.27 CategoryDevelop Byhooni Views20209
    Read More
  10. [ios] UIWebView 캐쉬 삭제

    Date2014.04.08 CategoryDevelop Byhooni Views3695
    Read More
  11. [ios] UIWebView 쿠키 유지

    Date2014.01.16 CategoryDevelop Byhooni Views11739
    Read More
  12. [ios] UIWebView를 이용한 로컬 HTML 파일 표시

    Date2015.01.02 CategoryDevelop Byhooni Views1316
    Read More
Board Pagination Prev 1 ... 41 42 43 44 45 46 47 48 49 50 ... 98 Next
/ 98