이미지 자동 리사이즈( resize) > script

본문 바로가기
사이트 내 전체검색

script

이미지 자동 리사이즈( resize)

페이지 정보

작성자 서방님 댓글 0건 조회 138회 작성일 06-09-20 17:59

본문

// 이미지 리싸이즈 함수
//  인자는 최대 width
function changeImageSize(pWidth) {
    var r, re;
    testImg = new Image();

    re = /이미지폴더|이미지폴더/i;
    for (var i=0;i<document.images.length;i++) {

        r = (document.images[i].src).search(re);
        if (r > -1 && document.images[i].src != "") {
            testImg.src = document.images[i].src;
            if (testImg.width > pWidth) {
                document.images[i].width = pWidth;
                document.images[i].height = testImg.height * pWidth / testImg.width;
            }
        }
    }
}

댓글목록

등록된 댓글이 없습니다.

Total 846건 49 페이지
게시물 검색

회원로그인

접속자집계

오늘
25
어제
302
최대
1,347
전체
155,086
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.