图片等比例缩放

页面代码:

<div id="pic">
<img src="/dd/gg.gif" height="233"/>
</div>

js代码

$(function(){
     $("#pic img").each(function() {
         var image = $(this);
         if (image.width() > 435) {
             image.width(435);
             image.height(435 / image.width() * image.height());

         }

     });
});
赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏