码迷,mamicode.com
首页 > Web开发 > 详细

用 jQuery实现图片等比例缩放大小

时间:2017-08-03 13:57:45      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:text   var   遍历   设置   pre   auto   放大   als   .com   

 

原文:http://www.open-open.com/code/view/1420975773093

  <script type="text/javascript">  
        window.onload = function() {  
            var w = 500;//设置最大宽度,也可根据img的外部容器 而动态获得,比如:$("#demo").width();  
            $("img").each(function() {//如果有很多图片,使用each()遍历   
                var img_w = $(this).width();//图片宽度   
                var img_h = $(this).height();//图片高度   
                if (img_w > w) {//如果图片宽度超出指定最大宽度   
                    var height = (w * img_h) / img_w; //高度等比缩放   
                    $(this).css( {  
                        "width" : w,"height" : height  
                    });//设置缩放后的宽度和高度   
                }  
            });  
      
        }  
        $(document).ready(function() {  
            //就本例而言 不要用 jQuery中的ready 你懂的...  
        })  
    </script>  

用 jQuery实现图片等比例缩放大小

标签:text   var   遍历   设置   pre   auto   放大   als   .com   

原文地址:http://www.cnblogs.com/shihaiming/p/7279072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!