具体思路:
- 通过具体容器取得容器内所有图片
- 循环检查所有图片长宽
- 对超过的图重新定高度.
/* 自动缩略一些大图的小JS
吕 lvjiyong@Gmail.com
http://www.lvjiyong.com/tag/jquery/
更新:2007.9.22
*/
jQuery.fn.ImageAutoSize = function(width,height)
{
$("div.info_view img").each(function()
{
var image = $(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());
}
});
}