Javascript限制页面图片大小代码

您好,欢迎来到百闽人生网登录 注册

百闽首页 | 考试日历 | 百闽娱乐 | 书信频道 | 节日庆典 | 语录句子 | 免费发布培训课程

百闽人生网

百闽人生网 > 培训新闻 > 电脑/IT > Javascript限制页面图片大小代码

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;

}

}

}


首页 1 2 下页 

关于我们 | 招生合作 | 负责声明 | 常见问题 | 诚聘英才 | 联系我们

Copyright©2014 www.bminlife.com 百闽人生网 版权所有©百闽人生网 闽ICP备14001301号
本文标题:Javascript限制页面图片大小代码
分站加盟及广告服务QQ:1476191318
友情提示:本站所有信息均由本站注册会员免费发布,如涉及版权问题或虚假信息请及时与本站联系。——我们一直在追求真实!