嗨我有一个固定位置和宽度为100%的标题,我还有一个从左侧滑出的侧边栏,它也是固定位置。问题是侧边栏与标题重叠,我希望标题随着侧边栏滑出而与侧边栏缩小。我认为它会自然地做到这一点,因为它被设置为宽度100%。但事实并非如此。
有什么想法吗?
由于
标题
#header_wrapper{
width:100%;
height: 50px;
/*background-color: #dddddd;*/
background-color: #2a5f8c;
border-bottom: 2px solid #ffffff;
float: left;
position: fixed;
z-index: 80;
border-bottom: 1px solid #444444;
}
边栏
#category_wrapper{
width: 200px;
height: 100%;
position: fixed;
float: left;
border-right: 3px solid #333;
display: none;
}
Jquery的
$("#header_category").click(function () {
$('#category_wrapper').toggle(200);
});
HTML
<div id="category_wrapper"></div><!--end category_wrapper-->
<div id="header_wrapper"></div><!--end header_wrapper-->
答案 0 :(得分:1)
而不是将标题的宽度设置为100%,您可以将left属性设置为0px,将右属性设置为0px,然后当菜单滑出时,您可以将left属性设置为左侧菜单的宽度,然后当它返回时,将其恢复为零。
动画示例:
$( "#category_wrapper" ).animate({
left: 200,
}, 200, function() {
// Animation complete.
});