`
star65225692
  • 浏览: 268241 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类

CSS实现图片按比例缩放

阅读更多

.image {
    max-width:600px;
    height:auto;
    cursor:pointer;
    //border:1px dashed #4E6973;
    //padding: 3px;
    zoom:expression( function(elm) {
        if (elm.width>360) {
            var oldVW = elm.width;
            elm.width=360;
            elm.height = elm.height*(360 /oldVW);处女座的女人
        }
        elm.style.zoom = '1';
    }(this)
    );
}


/*<img src="url" class="image" />*/

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics