//  인자는 최대 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;
            }
        }
    }

+ Recent posts