图片自动按宽高比例缩小的js代码
- <script type="text/javascript">
- function setImgSize(img,width,height){
- var MaxWidth=width;
- var MaxHeight=height;
- var HeightWidth=img.offsetHeight/img.offsetWidth;
- var WidthHeight=img.offsetWidth/img.offsetHeight;
- if(img.offsetWidth>MaxWidth){
- img.width=MaxWidth;
- img.height=MaxWidth*HeightWidth;
- }
- if(img.offsetHeight>MaxHeight){
- img.height=MaxHeight;
- img.width=MaxHeight*WidthHeight;
- }
- }
- </script>
- <img src="/up_files/article/20100716232307734.gif" border=0 onload="setImgSize(this,150,150);">
同类热门文章推荐
本站热门文章排行
发表文章评论
还没有评论,快抢沙发...