<脚本语言=Javascript>
var proMaxHeight = 150;
var proMaxWidth = 110;
函数 proDownImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(图像宽度>0 && 图像高度>0){
var 速率 = (proMaxWidth/image.width < proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
如果(比率 <= 1){
ImgD.width = image.width*rate;
ImgD.高度=图像.高度*比率;
}
别的 {
ImgD.width = image.width;
ImgD.height=图像.高度;
}
}
}
</脚本>