叠加导航不透明度更改



我正在尝试将我的菜单显示在覆盖层中,但具有不透明的变化效果而不是高度变化。我正在这里找到我在这里找到的代码但是我无法按照我的意愿工作。我想摆脱高度0% -> 100%更改,我想更改不透明度0-> 1以创造fadein效果。

function openNav() {
document.getElementById("myNav").style.height = "100%";
}
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}

当我将其更改为:

function openNav() {
document.getElementById("myNav").style.opacity = "1";
}
function closeNav() {
document.getElementById("myNav").style.opacity = "0";
}

和我的CSS:

.overlay {
height: 100%;
width: 100%;
position: fixed;
z-index: 999;
top: 0;
left: 0;
background-color: rgba(0,0,0, 0.9);
overflow-y: hidden;
transition: 0.5s;
}

覆盖页面上的菜单显示(不在按钮上),但是当我关闭时,我无法重新打开它。

多数民众赞成在我找到了http://jsfiddle.net/rubixx/ct3ve7pb/1/那基本上与我正在使用的代码相同,但我想摆脱高度变化,只是不透明的fadein覆盖。

我将感谢任何帮助

没有太多更改:

而不是初始height: 0%,我们使用display: none隐藏覆盖层。

我们使用fadein/fadeout而不是更改高度。

更新的小提琴:

http://jsfiddle.net/ct3ve7pb/4/

function openNav() {
    $("#myNav").fadeIn();
    $("#open-nav").hide();
}
function closeNav() {
    $("#myNav").fadeOut();
    $("#open-nav").show();
}
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}
.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 1);
    overflow-y: hidden;
    display: none;
}
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}
.closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px !important;
}
#open-nav {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 34px;
  right: 45px;
  font-size: 38px !important;
  transition-delay: 0.2s;
}
@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .closebtn {
    font-size: 40px !important;
    top: 15px;
    right: 35px;
  }
}
.open {
  height: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div id="myNav" class="overlay">
  <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
  <div class="overlay-content">
    <a href="#">About</a>
    <a href="#">Services</a>
    <a href="#">Clients</a>
    <a href="#">Contact</a>
  </div>
</div>
<button id="open-nav" style="font-size:30px;cursor:pointer" onclick="openNav()">☰</button>

相关内容

  • 没有找到相关文章

最新更新