您的位置:首页 > 其它

兼容IE,Firefox 的图片自动缩放

2008-04-15 23:38 615 查看
原文:http://www.loveyuki.com/Article/CSS_Image_Autosize_IE_Firefox.aspx

.Image {

max-width:600px;height:auto;cursor:pointer;

border:1px dashed #4E6973;padding: 3px;

zoom:expression( function(elm) {

if (elm.width>560) {

var oldVW = elm.width; elm.width=560;

elm.height = elm.height*(560 /oldVW);

}

elm.style.zoom = '1';

}(this));

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: