首先给图片加个div/div标签对,img中不能定义高度或宽度,如下:
div class="product_img_div"img src="images/test.jpg" class="product_img" //div 在CSS中写入代码:.product_img_div {width:210px;height:190px;overflow:hidden}
作用是控制图片载入时,溢出部分隐藏,这样就不会把界面撑得太难看。
代码如下:
ReSizeImg("product_img",200,180);
function ReSizeImg(cName,w,h){
var reImgs = document.getElementsByTagName("img");
for (j=0;jreImgs.length;j++){
if (reImgs[j].className==cName && (reImgs[j].heighth || reImgs[j].widthw)) {
if (reImgs[j].height==reImgs[j].width) {
reImgs[j].height=h;reImgs[j].width=w;
} else if (reImgs[j].heightreImgs[j].width) {
reImgs[j].height=h;
} else if (reImgs[j].heightreImgs[j].width){
reImgs[j].width=w;
}
}
}
}
测试后,图片大小完美缩放,也解决了在载入时会把界面撑得很难看的问题。
猜你喜欢