HTML & Script
이미지 자동 리사이즈( resize)
duraboys
2007. 5. 2. 23:07
// 인자는 최대 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;
}
}
}