欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

兼容ie、firefox的图片自动缩放的css跟js代码分享

程序员文章站 2023-11-24 14:58:34
需求:图片width<=330px,height<=150。 1、利用max-width,max-height使图片等比例自动缩放,代码: 复制代码 代码如下:...
需求:图片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事件中,如果图片加载速度很慢的话,可能会有一个小缺陷】