我想动画一个<div>从200px到auto的高度。我似乎无法使其工作。有人知道吗?
<div>
200px
auto
这是代码:
$("div:first").click(function(){ $("#first").animate({ height: "auto" }, 1000 ); });
var curHeight = $('#first').height();
$('#first').css('height', 'auto');
var autoHeight = $('#first').height();
$('#first').height(curHeight).animate({height: autoHeight}, 1000);
并在一起:
var el = $('#first'), curHeight = el.height(), autoHeight = el.css('height', 'auto').height(); el.height(curHeight).animate({height: autoHeight}, 1000);