无法使用Z-index隐藏固定的导航栏

时间:2019-06-15 21:20:41

标签: html css

我目前正在尝试创建一种效果-想象一个固定的全屏图像,该图像将在滚动(视差)时隐藏在content div下方。另外,我希望导航栏不滚动,因此它是固定的。但是,我希望导航栏在滚动显示时也要隐藏在内容div下方。

因此,我尝试使用z-index,但没有成功。 以某种方式,我无法将固定的导航栏隐藏在内容div下面。

标题:

<div class="container-fluid position-fixed">

  <div class="row m-0 w-100">

    <div class="col-2 justify-content-center d-flex offset-5">
      <a class="align-self-center" routerLink="">
        <h1>NØREBRO STUDIOS</h1>
      </a>
    </div>

    <div class="col-5 pl-5">
      <ul class="nav justify-content-start">
        <li class="nav-item mr-5">
          <a class="nav-link" routerLink="cases">Work</a>
        </li>
        <li class="nav-item mr-5">
          <a class="nav-link" href="#">About</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#">Contact</a>
        </li>
      </ul>
    </div>
  </div>

</div>

CSS:

.container-fluid {
  z-index: 1;
  background-color: transparent;
  padding: 3em 0em;
}

内容(上容器应该在滚动条上隐藏标题):

<div class="container-fluid px-0">
  <app-transparent-header></app-transparent-header>
</div>

<div class="front-image min-vh-100 min-vw-100">
</div>


<div class="container-fluid upper-container">

...


CSS:
.front-image {
  background-image: url("/assets/images/savum/savum-front.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.upper-container {
  padding: 15em 15em 0em 15em;
  background-color: blue;
}

.container-fluid {
  z-index: 9999;
}

1 个答案:

答案 0 :(得分:0)

如果我理解正确,则希望隐藏标题,但希望在滚动时将导航栏固定在屏幕顶部:

.nav-parent { 
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
}

在导航栏上设置父类,然后为其分配这些值