我在我的网站上并排放置了三个不同大小的图像,并希望使用 jQuery 根据浏览器大小调整它们的大小。
$(window).bind('load resize', function() {
var windowheight = $(window).height();
$('#pictures img').each(function() {
$(this).height(windowheight);
});
});
在 CSS 文件中,我有:
#pictures img {
width:auto;
max-height:100%;
}
如果每个图像具有相同的高度,则此代码将是正确的,但考虑到所有三个图像具有不同的高度,我不知道将哪个值传递给 height() 函数。
有任何想法吗?
提前致谢