<スクリプト言語=JavaScript>
var proMaxHeight = 150;
var proMaxWidth = 110;
関数 proDownImage(ImgD){
var image=新しい画像();
画像.src=ImgD.src;
if(image.width>0 && image.height>0){
var rate = (proMaxWidth/image.width < proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
if(レート <= 1){
ImgD.width = 画像.幅*レート;
ImgD.height =画像.高さ*レート;
}
それ以外 {
ImgD.width = 画像.幅;
ImgD.height =画像.高さ;
}
}
}
</script>