<腳本語言=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=影像.高度;
}
}
}
</腳本>