Views 7465 Votes 0 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. [ios] 아이폰에서 진동(Vibrate) 기능 추가하기

  2. [ios] 아이폰 앱 이름 및 버전 정보

  3. [ios] 아이폰 개발 총정리..

  4. [ios] 아이폰 개발 따라하기 ㅋㅋㅋ

  5. [ios] 아이폰 GPS 사용하기

  6. [iOS] 시뮬레이터에 푸시 알림을 보내는 방법

  7. [ios] 스터디 자료 (from 종길M)

  8. [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기

  9. [ios] 소소한 팁 (Rect,Point,Path,URL 등)

  10. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

  11. [ios] 새로 만들고 있는 DateMemo

  12. [ios] 상위 ViewController 가져오기

  13. [ios] 비디오,네트워크,소셜로그인 테스트

  14. [ios] 비동기 블럭 코드 예제

  15. [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images)

  16. [ios] 미스터피자(Mr.pizza) 어플

Board Pagination Prev 1 ... 35 36 37 38 39 ... 74 Next
/ 74