当前位置导航:炫浪网>>网络学院>>网页制作>>JavaScript教程

js控制多个图片加载后的大小

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<h3>对多个图片进行控制。</h3>

<img src="http://pages.blueidea.com/articleimg/2008/08/1589/PReview_s01.jpg?http://www.xvna.com" name="CSSRain"/>
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" name="CssRain"/>
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" name="CssRain"/>
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" name="CssRain"/>
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" name="CssRain"/>
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" />
<img src="http://pages.blueidea.com/articleimg/2008/08/1589/preview_s01.jpg?http://www.xvna.com" />

<script language=javascript>
function proDownImage(ImgD){
var proMaxHeight = 40;
var proMaxWidth  = 120;
    var image=new Image();
    image.src=ImgD.src;
    if(image.width>0 && image.height>0){
var rate = (proMaxWidth/image.width < proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
       //如果 指定高度/图片高度  小于  指定宽度/图片宽度 ,  那么,我们的比例数 取 指定高度/图片高度。
   //如果 指定高度/图片高度  大于  指定宽度/图片宽度 ,  那么,我们的比例数 取 指定宽度/图片宽度。
if(rate <= 1){  
   ImgD.width = image.width*rate;   //图片新的宽度 = 宽度 * 比例数
   ImgD.height =image.height*rate;
}else{//  如果比例数大于1,则新的宽度等于以前的宽度。
   ImgD.width = image.width;
   ImgD.height =image.height;
}
     }
}

var imgs = document.getElementsByTagName("img");
for(var i=0;i<imgs.length;i++){
   if(imgs[i].name=="CssRain"){
imgs[i].onload = function() {
 proDownImage(this);
}
}
}
</script>

相关内容
赞助商链接