首页 > WEB前端 > jQuery自动根据图片高度宽度缩
2013
11-05

jQuery自动根据图片高度宽度缩

.fn.ImageAutoSize = function(width,height)
{
$(“img”,this).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());
}
});
}
最后编辑:
作者:dean
这个作者貌似有点懒,什么都没有留下。

留下一个回复

你的email不会被公开。