我有一个 divoverflow:hidden
和一个设定的高度。当我跑步时animate()
,我希望高度动画到全尺寸。
例如,我有这个:
<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>
^如何在不知道总动画高度的情况下重新创建它?