图片大小自动缩放Js代码

<!--
var flag=false;
function DrawImage(ImgD,FitWidth,FitHeight){
   var image=new Image();
   image.src=ImgD.src;
   alert(image.width);
   if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= FitWidth/FitHeight){
     if(image.width>FitWidth){ 
     ImgD.width=FitWidth;
     ImgD.height=(image.height*FitWidth)/image.width;
     }else{
     ImgD.width=image.width; 
     ImgD.height=image.height;
     }
     ImgD.alt="点击图片放大("+image.width+"×"+image.height+")";
     }
    else{
     if(image.height>FitHeight){ 
     ImgD.height=FitHeight;
     ImgD.width=(image.width*FitHeight)/image.height;   
     }else{
     ImgD.width=image.width; 
     ImgD.height=image.height;
     }
     ImgD.alt="点击图片放大("+image.width+"×"+image.height+")";
     }
    }
}
//-->

 <img src="招商项目.jpg"  onload="javascript:DrawImage(this,450,325);" border="0"  id="inp" style="cursor:hand">

转自:网络

posted @ 2008-11-21 09:05  农十四  阅读(422)  评论(0编辑  收藏  举报