이미지 자동 리사이즈( 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;
}
}
}
}
댓글목록
등록된 댓글이 없습니다.