首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

网下的一段JS动态缩小图片的代码,缩略图好帮手,支持FF,IE,Chrome

2012-11-25 
网上的一段JS动态缩小图片的代码,缩略图好帮手,支持FF,IE,Chromescript languageJavaScriptvar flag

网上的一段JS动态缩小图片的代码,缩略图好帮手,支持FF,IE,Chrome
<script language="JavaScript">
var flag=false;
function DrawImage(ImgD,imageWidth,imageHeight) {
   var image=new Image();
   image.src=ImgD.src;
   if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= imageWidth/imageHeight){
     if(image.width>imageWidth){
     ImgD.width=imageWidth;
     ImgD.height=(image.height*imageWidth)/image.width;
     }else{
     ImgD.width=image.width;
     ImgD.height=image.height;
     }
     }
    else{
     if(image.height>imageHeight){
     ImgD.height=imageHeight;
     ImgD.width=(image.width*imageHeight)/image.height;
     }else{
     ImgD.width=image.width;
     ImgD.height=image.height;
     }
     }
    }
  }
</script>

用法:<img src="xxx" onload="javascript:DrawImage(this,120,60) ;"/>

热点排行