我想制作一个包含自动调整图像大小的图库。这甚至可能吗? 这就是我希望它的工作方式
有没有人可以帮我解决这个问题?
答案 0 :(得分:0)
以下是一个示例解决方案:DEMO,Code(仅适用于单行,请参阅下面的更新)。
我正在使用fancybox,但您可以使用其他插件。
jQuery :
var imgCount = $('.container img').length;
ContainerWidth = $('.container').outerWidth();
$('.container img').each(function() {
$(this).css({
'width' : Math.floor(ContainerWidth/imgCount),
'height' : 'auto'
});
});
<强>更新强>
我找到了this plugin,它似乎提供了you need。