Contents

조회 수 7483 댓글 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. [js] 실행되는 디렉토리 확인하는 스크립트..

  2. [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ

  3. [js] 여러가지 트리(tree) 모음.. ㅋㅋ

  4. [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기

  5. [js] 윈도우 시작버튼처럼 나오는 메뉴

  6. [js] 윤동이가 만든 영어 학습(?) 프로그램

  7. [js] 이미지 미리 로딩하기

  8. [js] 이미지 사이즈를 동적으로 조절..

  9. [js] 이벤트 전파 3단계

  10. [js] 이벤트 핸들러(Event Handlers)

  11. [js] 인터넷 주소(URL) 인코딩 ㅋㅋ

  12. [js] 자바스크립트 escape()를 PHP로 받기

Board Pagination Prev 1 ... 51 52 53 54 55 56 57 58 59 60 ... 71 Next
/ 71