我有一個賽普爾代碼在這裏:jQuery的 - 動畫/幻燈片高度:100%
$('.aktualita_sipky').toggle(function() {
$(this).parent().find('.aktualita_content').animate({
height: "100%",
}, 1500);
}, function() {
$(this).parent().find('.aktualita_content').animate({
height: "120px",
}, 1500);
});
現在,當我點擊它作爲第一個「切換」,它只是即時顯示(無動畫),當我點擊第二個「切換」,它很好地滑動。
有沒有一種方法可以將它滑動到100%的動畫效果呢?
如果您想要考慮填充,邊框和邊距,請使用outerHeight(true)而不是height()。 (http://api.jquery.com/outerHeight/) – SeanKendle 2013-08-08 13:52:22