শনিবার, ১৪ মার্চ, ২০০৯

JavaScript Image Resize on the fly....

Re-size your images of a container (ex: table, div etc) to a maximum width maintaining aspect ratio.

/* Code - Start */

function fixImgs(containerId, maxW) {
var pix=document.getElementById(containerId).getElementsByTagName('img');
for (i=0; i maxW) {
f=1-((w - maxW) / w);
pix[i].width=w * f;
pix[i].height=h * f;
}
}
}

/* Code - End */

add onLoad="fixImgs(containerId, maxWidth);" in the body tag.

কোন মন্তব্য নেই :

একটি মন্তব্য পোস্ট করুন