我以为我以前解决过这个问题,但我想没有。
在我的例子中:http: //jsfiddle.net/VDtgT/31/
我会认为在跨度 div 中调用的图像会受到 div 的最大高度和最小高度设置的约束/调整大小?
我基本上打算有一行带有单个图像的数据库输出,但它需要根据窗口的大小缩放该图像。
HTML:
<div id="wrap">
<!-- *** TOP ROW -->
<div class="row-fluid show-grid">
<div class="span12" style="background-color: yellow;" align="center">HEADER ROW</div>
</div>
<!-- *** MIDDLE ROW --->
<div class="row-fluid">
<div class="span4 boxitup">
<a href="#"> <img src="http://placehold.it/150x150" alt="img1"></a>
</div>
<div class="span4 boxitup">Column 2</div>
<div class="span4 boxitup">Column 3</div>
</div>
</div> <!-- /close wrap -->
<div id="push"></div>
<!-- FOOTER BEGIN -->
<div id="footer">
<div class="row-fluid">
<div class="span12" style="background-color: yellow;" align="center">
Footer row
</div>
</div>
</div>
的JavaScript:
$( document ).ready( function(){
setMaxHeight();
$( window ).bind( "resize", setMaxHeight );
function setMaxHeight() {
$( ".boxitup" ).css( "min-height", ($(window).height() / 7) + "px" );
$( ".boxitup" ).css( "max-height", ($(window).height() / 7) + "px" );
}
});