// 인자는 최대 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;
}
}
}
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;
}
}
}
'HTML & Script' 카테고리의 다른 글
QueryString 값을 가져올수 있는 자바 스크립트 입니다. (0) | 2007.05.02 |
---|---|
IP체크 정규식 (2) | 2007.05.02 |
새창으로 폼 submit 하기 (0) | 2007.05.02 |
자바스크립트에서 돈(money) 형식처럼 3자리마다 콤마 찍는 함수 (1) | 2007.05.02 |
엄청 간단한 iframe 크기 자종 조절 스크립트 (0) | 2007.05.02 |