Posted in Javascript onAugust 12, 2013
这个功能主要是解决内容页中的图片过大撑出,导致页面比较难看,就需要这样的代码,需要的朋友可以参考下
需求:图片width<=600px,height<=800。
1、利用max-width,max-height使图片等比例自动缩放
代码:
img{max-width: 600px;max-height: 800px;}
由于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事件中,如果图片加载速度很慢的话,可能会有一个小缺陷】
所有我们可以结合这两个一起使用。先用css然后后面再加上js。
兼容ie、firefox的图片自动缩放的css跟js代码分享
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@