Posted in Javascript onJanuary 21, 2012
需求:图片width<=330px,height<=150。
1、利用max-width,max-height使图片等比例自动缩放,代码:
img{max-width: 330px;max-height: 150px;}
由于ie6不支持css max-width,max-height,所以在ie6中需要利用javascript脚本来控制大小。
2、用javascript脚本来兼容ie6,代码如:
var img_width = img.OffsetWidth;<BR>var img_height = OffsetHeight; var current_w = (150*img_width)/img_height; var current_h = (330*img_height)/img_width; if(img_height>150){ if(img_width>330){ D.css(img,{ width:330 + "px", height:current_h + "px" }) }else{ D.css(img,{ width:current_w + "px", height:150 + "px" }) } }else{ if(img_width>330){ D.css(img,{ width:330 + "px", height:current_h + "px" }) }else{ D.css(img,{ width:img_width + "px", height:img_height + "px" }) } }
【注1:D.css为KISSY.DOM.css,引用的是kissy类库中的DOM方法】
【注2:用javascript来控制图片的尺寸页面必须要等图片完全加载出来,所以代码要包含在window.onload事件中,如果图片加载速度很慢的话,可能会有一个小缺陷】
兼容ie、firefox的图片自动缩放的css跟js代码分享
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@