我有這樣的代碼,增加DIV的使用jQuery的高度動畫,而無需按下含量下降
HTML
<div id="header-line"></div>
<div id="main-menu"></div>
<div id="content"></div>
CSS
#header-line {
height: 20px;
background-color: black;
top:0;
left:0;
}
#main-menu {
height: 30px;
background-color: green;
}
#content {
background-color: blue;
height: 200px;
}
的Javascript
$("#main-menu").hover(function() {
$(this).stop(true, false).animate({
height: "100px"
});
}, function() {
$(this).stop(true, false).animate({
height: "30px"
});
});
我所做的中間DIV擴大其使用jQuery animate
功能高度。但這個問題是它向下推底部DIV。
如何使它在底部DIV擴大不推下來?
太感謝你了......它的工作原理... :) – Nalaka526
不客氣:) – Robert
在如果您想要控制動畫的持續時間,請在'.animate(..)','{duration:100}'內添加另一個名爲duration的屬性以獲取更多信息,單擊[here](http://api.jquery.com/animate /) –