是否可以動畫 - > css('height','auto')?jquery - 動畫到高度:自動
工作示例 http://www.jsfiddle.net/V9Euk/154/
CSS
#div1 {
position:absolute;
right:30px;
bottom:0px;
border:1px solid #ff0000;
overflow:hidden;
}
HTML
<div id="div1" style="height:20px;">
Test<hr />
text text <br />
text text <br />
text text <br />
</div>
jQuery的
$("#div1").hover(
function() {
$('#div1').animate({
"height": "auto"
}, "fast"); // <---- dont work :(
}, function() {
$('#div1').animate({
"height": "20px"
}, "fast");
});
提前感謝! 彼得
如果你想有一個滑出動畫,你應該看看jQuery用戶界面:http://jqueryui.com/demos/effect/ – 2010-08-21 08:53:50