奇客资讯、软件硬件、编程系统

March 29th, 2008

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

author: Loveyuki
via: Loveyuki’s BLOG

IE 6 只有在图片完全下载完成后才会自动调整大小
这里使用了 expression,但是利用了一次加载,所以 expression 不会造成内存泄漏

.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));
}