教你在网站中实现图片不变形等距离缩放

    文章出自:合力绿帆    发布时间:2010-11-28

    分享到:

    <script>
    <!--
    function DrawImage(ImgD,FitWidth,FitHeight){
    var image=new Image();
    image.src=ImgD.src;
    if(image.width>0 && image.height>0){
    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;
    }
    } else{
    if(image.height>FitHeight){
    ImgD.height=FitHeight;
    ImgD.width=(image.width*FitHeight)/image.height;
    }else{
    ImgD.width=image.width;
    ImgD.height=image.height;
    }
    }
    }
    }
    //-->
    </script>


    <IMG SRC="<%=rs("img2")%>" border=0 onload="javascript: DrawImage(this,180,160);">

    文章出自:北京网站建设公司-合力绿帆 如转载请注明出处!
网站备案资料下载| FTP审请| 建设套餐|建站流程|建站合同下载|关于我们|付款方式| 联系我们