`
fengxu
  • 浏览: 168819 次
  • 性别: Icon_minigender_1
  • 来自: 四川
文章分类
社区版块
存档分类
最新评论

自动缩略图

阅读更多

<img src="wy_admin/<%=rs1("pic1")%>" width="220" height="150" border="0" ONLOAD='javascript:DrawImage(this);'>
必须要给初始文件大小


<script>
var flag=false;
function DrawImage(ImgD){
var image=new Image();
var FitWidth=220;//图片的最大宽,超过这个值就会自动缩小
var FitHeight=150;//按比例缩小
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
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;
}
ImgD.alt="";
}
else{
if(image.height>FitHeight){
ImgD.height=FitHeight;
ImgD.width=(image.width*FitHeight)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt="";
}
}
}
</script>

 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics