网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 Javascript限制页面图片大小
范文
    Javascript限制页面图片大小,具体代码如下:
    function limitImage(ImgD){
    var areaWidth = 300; //你放置图片区域的宽度。
    var areaHeight = 300; //你放置图片区域的高度。
    var image=new Image();
    image.src=ImgD.src;
    if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= areaWidth/areaHeight){
    if(image.width>areaWidth){
    ImgD.width=areaWidth;
    ImgD.height=(image.height*areaWidth)/image.width;
    }else{
    ImgD.width=image.width;
    ImgD.height=image.height;
    }
    ImgD.alt=image.width+"×"+image.height;
    }else{
    if(image.height>areaHeight){
    ImgD.height=areaHeight;
    ImgD.width=(image.width*areaHeight)/image.height;
    }else{
    ImgD.width=image.width;
    ImgD.height=image.height;
    }
    ImgD.alt=image.width+"×"+image.height;
    }
    }
    }
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/22 4:23:02