jquery 如何让图片自适应大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 如何让图片自适应大小相关的知识,希望对你有一定的参考价值。

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
jQuery.fn.LoadImage=function(scaling,width,height,loadpic)
if(loadpic==null)loadpic="../img/loading.gif";
return this.each(function()
var t=$(this);
var src=$(this).attr("src")
var img=new Image();
img.src=src;
//自动缩放图片
var autoScaling=function()
if(scaling)
if(img.width>0 && img.height>0)
if(img.width/img.height>=width/height)
if(img.width>width)
t.width(width);
t.height((img.height*width)/img.width);
else
t.width(img.width);
t.height(img.height);


else
if(img.height>height)
t.height(height);
t.width((img.width*height)/img.height);
else
t.width(img.width);
t.height(img.height);





//处理ff下会自动读取缓存图片
if(img.complete)
autoScaling();
return;

$(this).attr("src","");
var loading=$("<img alt=\"加载中...\" title=\"图片加载中...\" src=\""+loadpic+"\" />");
t.hide();
t.after(loading);
$(img).load(function()
autoScaling();
loading.remove();
t.attr("src",this.src);
t.show();
);
);

</script>
<div id="content"><img src="img/20120518073933709.jpg"/></div>
<script type="text/javascript">
<!--
$(window).load(function()
$('#content img').LoadImage(true, 600,500,'img/loading.gif');
);
//-->
</script>
参考技术A

根据父容器的宽度自动改变图片大小,这个一句css就能实现吧。

.imgwidth:100%;height:auto


<body>

<img class="img" src="http://down.admin5.com/demo/code_pop/18/764/images/1.jpg" />

</body

参考技术B 说实在的,我做的时候没有处理过突破自适应大小,所以在网上给你找了个例子,链接如下:
http://www.jb51.net/article/31564.htm
我看了下,大概思路是比较宽高的值,然后改变图片所在标签的width和height的属性值。你可以试试本回答被提问者和网友采纳

DIV+CSS,如何让图片自适应大小?

我在页面上放了几个Image控件,如何让它在后台动态调用图片是不超过我设定的大小?就是说图片超过我设定的大小后就自动缩小,而不吧DIV给撑开

先给你写个例子。
css样式为:
.box width:50px; border:1px #000 solid;
img max-width:50px!important; height:auto!important; width:expression(this.width > 50 ? "50px" : this.width)!important;
html代码为:
<div class="box"><img src="pic.gif" alt="ad" /></div>

这样就可以了,<div class="box"></div>里面的图片都不会超出.box的宽度。
max-width:50px 和(width:expression(this.width > 50 ? "50px" : this.width) 这里面的50设置成你想要的宽度就可以了,如果图片宽度大于这个数值,就会自动缩小。
参考技术A 图片尺寸过大将会影响页面布局。最理想的解决方案自然是自动生成缩略图,涉及的后台工作较为复杂,用CSS进行控制是一个可以接受的捷径。
  如果用width 属性强行设定显示尺寸似乎太不智能。幸好 Firefox/Opera/IE 7 都提供了 max-width 属性支持。假定希望图片显示宽度不超过500像素,CSS可能如下:
  以下是引用片段:
以下是引用片段:
  fit-image
  border : 0;
  max-width : 500px;
  
  IE6 不支持 max-width 属性,但是利用 IE 独有的 expression 属性可以迂回的解决这个问题。
  以下是引用片段:
以下是引用片段:
  fit-image
  border : 0;
  max-width : 500px;
  width: expression (
  function(img)
  img.onload=function()
  this.style.width = ’’;
  this.style.width = (this.width > 500)?"500px":this.width+"px"
  ;
  return ’120px’ //加载时显示宽度为120px
  (this)
  );
  
  利用<img>的onload 事件使图片加载完成后计算其尺寸大小,如果超过500像素就显示为500像素,否则显示其默认宽度。
  expression 不是符合WEB标准的做法,不到万不得以不建议使用。但是不能不承认IE的很多扩展是不错的,IE不应该被轻视!
参考技术B 个人感觉还是用javascript来控制比较合理,如果用CSS来控制,兼容性是个问题。
给段代码:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery.fn.ImageToggleSize = function(width,height)

jQuery("img",this).each(function()

var image = jQuery(this);
if(image.width()>width)

image.width(width);
image.height(width/image.width()*image.height());

if(image.height()>height)

//image.height(height);
//image.width(height/image.height()*image.width());

);


jQuery(function($) $(".entry").ImageToggleSize(530,'*'); );

</script>
jQuery(function($) $(".entry").ImageToggleSize(530,'*'); );中的“.entry”表示你想保护的DIV的class名称,530表示你想控制的图片最大宽度。
参考技术C 在CSS中设定DIV的样式,然后在image中设定为style="height: 100%; width:100%;“
看下我的百度空间吧,里面有实例
http://hi.baidu.com/%D0%A1%D0%A1%D0%A1%B5%C4%CF%BA%C3%D7/blog/item/1d4eb478105c7bf62f73b339.html本回答被提问者采纳
参考技术D 那需要给img 定义宽度和高度 。

以上是关于jquery 如何让图片自适应大小的主要内容,如果未能解决你的问题,请参考以下文章

Android 如何让图片自适应WebView大小

android怎么设置自适应大小的背景图片

怎样用css控制图片自适应大小?

怎样用css控制图片自适应大小?

轮播图js怎么设置图片自适应大小

div+css怎么让图片自适应大小时,又不超过它本身最大的时候!