控制缩略图小图片能按比例缩放,不会变形
作者:cmscn 日期:2008-11-18
第一步,把这个js代码放到你的叶面:
//图片按比例缩放
var flag=false;
function DrawImage(ImgD,iwidth,iheight){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= iwidth/iheight){
if(image.width>iwidth){
ImgD.width=iwidth;
ImgD.height=(image.height*iwidth)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"×"+image.height;
}
else{
if(image.height>iheight){
ImgD.height=iheight;
ImgD.width=(image.width*iheight)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"×"+image.height;
}
}
}
第二步:调用图片的时候这样写:
<img src='<%response.write pic_url(pic,0)%>' border=0 onload="DrawImage(this,500,1200);" align=center alt='在新窗口中浏览此图片'>
其中500是最大宽度,1200是最大高度。
http://www.joekoe.com/forum/view_65491.html
评论: 0 | 引用: 0 | 查看次数: 514
发表评论