我有一個div與overflow:hidden
和設定的高度。當我運行animate()
時,我想讓高度動畫到全尺寸。JQuery的動畫()到最大高度
例如,我有這樣的:
<a href="#" onclick="lol(); return false;">clicky</a>
<div style="height:50px; overflow:hidden;" class="main">
<div style="height:100px; background:blue;">text</div>
<div style="height:50px; background:yellow;">text</div>
<div style="height:50px; background:green;">text</div>
</div>
這個例子工作,但只是因爲我知道所有的元素的總高度。
<script>
function lol() {
$("div.main").animate({height:'200px'}, 1000);
}
</script>
^我怎樣才能重新創建不知道總有生高度?
這是一個好主意,但如果內部div有利潤率(他們在我的真實版本中這樣做),它將無法正常工作。 – supercoolville 2012-08-15 01:59:51
使用'outerHeight(true)'而不是'height()'來獲得包括邊距的高度。 – 2012-08-15 02:02:19
@supercoolville這是[其他jQuery函數](http://api.jquery.com/outerHeight/)的用途。 – 2012-08-15 02:05:22