Flexbox和左侧边栏覆盖

时间:2019-04-05 20:46:37

标签: html5 css3 flexbox

如何让左侧边栏覆盖内容而不是推送内容?我希望它可以覆盖移动设备,但可以推送网络布局。 Flexbox对我来说是个新手,所以不确定是否需要其他布局来进行此操作,或者使用Flexbox是否可以做到这一点?我猜我需要从flexbox中删除侧边栏,并使用固定的相对布局?

我也在使用角度代码,但是为了简单起见,我删除了角度代码,所以请不要介意额外的div。

<div class="wrapper">        
    <header class="header">
        header       
    </header> 

    <div class="main">            
        <div class="left-sidebar">
            left sidebar          
        </div>

        <div class="main-content-wrapper">    
             <div class="main-content">    
                <h3>Main </h3>     
             </div>     

             <footer class="footer">
                <p>content</p>
                <p>content</p>
                <p>content</p>              
             </footer> 
        </div>       
     </div>
</div>

body,
html {
    height: 100%;
    overflow: hidden;
}

header {
    min-height: 60px;   
    flex: none;
    width: 100%;
    background-color: silver;
}

.wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;  

    .main {
        flex: 1;
        display: flex;     


        .main-content-wrapper {
            display: flex;
            flex: 1;
            flex-direction: column;
            overflow: auto;


            .main-content {
                padding: 2rem;
                flex: 1;
                background-color: antiquewhite;
            }

            footer {
                background-color: silver;
                min-height: 300px;
                flex-shrink: 0;
            }
        }
    }

}

.left-sidebar {
    width: 0;
    height: 100%;
    overflow: auto;
    flex: none;


    &.active {
        width: 250px;
    }

    .left-sidebar-content {
        padding: 1rem;
    }

}

1 个答案:

答案 0 :(得分:1)

尝试一下,实际上我做了一个新的结构,尽管与您的结构没什么不同((删除一些元素只是为了使用更少的代码);我正在使用flexbox使整个包装成为一个flex容器,并使用媒体查询来指示边栏何时应将内容 push 推到一边,以及何时 overlap 内容以及叠加层。

document.getElementById('toggleBtn').onclick = function() {
  document.getElementById('sidebar').classList.toggle('active');
  document.getElementById('overlay').classList.toggle('hidden');
}

document.getElementById('overlay').onclick = function() {
  document.getElementById('overlay').classList.toggle('hidden');
  document.getElementById('sidebar').classList.toggle('active');
}
body {
  margin: 0;
}

.wrapper {
  display: flex;
  align-items: stretch;
  height: 100vh;
}

.main-content-wrapper {
  width: 100%;
}

#sidebar {
  min-width: 230px;
  max-width: 230px;
  background-color: lightgray;
  transition: all 0.3s;
  height: 100vh;
  margin-left: -230px;
  /* top layer */
  z-index: 3
}

#sidebar.active {
  margin-left: 0px;
}

@media (max-width: 580px) {
  #sidebar {
    position: fixed;
    top: 0;
    /* top layer */
    z-index: 3
  }
  .overlay {
    background-color: rgba(0, 0, 0, 0.425);
    width: 100vw;
    height: 100vh;
    z-index: 2;
    top: 0;
    left: 0;
    position: absolute;
  }
  .overlay.hidden {
    display: none;
  }
}
<div class="wrapper">
  <div class="left-sidebar" id="sidebar">
    left sidebar
  </div>

  <div class="main-content-wrapper">
    <div class="main-content">
      <h3>Main </h3>

      <button type="button" id="toggleBtn">Toggle</button>
    </div>
  </div>
  <div class="overlay hidden" id="overlay"></div>
</div>