我有这个代码,
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"
});
});
我用 jQueryanimate
函数使中间的 DIV 扩展了它的高度。但这样做的问题是它压低了底部的 DIV。
如何让它在底部 DIV 上展开而不向下推?