簡體   English   中英

單擊移動設備中的任何鏈接時,漢堡菜單不會折疊

[英]Hamburger menu doesn't collapse on click any link in mobile

我正在建立一個網站並遇到了這個問題。 我有一個基本的導航欄,當在移動設備上查看時,它看起來像一個漢堡菜單。 菜單工作正常。 我使用純 HTML-CSS 代碼來制作這個導航欄。 問題是當我單擊菜單上的任何鏈接導航到頁面的不同部分時,導航欄沒有關閉。

HTML:

<header class="navbar-fixed-top">
    <div class="container">
        <nav>
          <input type="checkbox" id="nav" class="hidden">
          <label for="nav" class="nav-btn">
            <i></i>
            <i></i>
            <i></i>
          </label>

          <div class="nav-wrapper">
            <ul>
                <li><a href="#home">HOME</a></li>
                <li><a href="#mint">MINT</a></li>
                <li><a href="#community">COMMUNITY</a></li>
                <li><a href="#projects">PROJECTS</a></li>
                <li><a href="#faq">FAQ</a></li>
              </ul>
          </div>
        </nav>
    </div>
</header>

CSS

header {
text-align: right;
-webkit-transition: all .5s;
transition: all .5s;
height: 65px;}
nav {
  
padding: 8px;

}
nav ul {

margin-bottom: 0;
float:right;
-webkit-transition: all .5s;
transition: all .5s; 
}

nav ul li {
display: inline-block;
float: left;
 }

nav li {
display: inline-block;
margin: 0.75em;
}

nav ul li:last-child {
margin-right: 24px;
}

nav ul li a {
display: inline-block;
outline: none;
color: rgb(255, 255, 255);
text-transform: uppercase;
text-decoration: none;
font-size: 1.2em;
align-content: space-between;
   
font-weight: 600;
}

@media screen and (max-width: 864px) {
.logo {
  padding:0;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(0, 0, 0);
    opacity: 0;
   transition: all 0.2s ease;
    
  }
  .nav-wrapper ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }

  .nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }


.nav-wrapper ul li:nth-child(1) a {
 transition-delay: 0.2s;
 }
  
 .nav-wrapper ul li:nth-child(2) a {
  transition-delay: 0.3s;
  }
  
 .nav-wrapper ul li:nth-child(3) a {
  transition-delay: 0.4s;
 }
  
.nav-wrapper ul li:nth-child(4) a {
 transition-delay: 0.5s;
 }

 .nav-wrapper ul li:nth-child(5) a {
 transition-delay: 0.6s;
 }


.nav-wrapper ul li:not(:first-child) {
 margin-left: 0;
 }
  
.nav-wrapper ul li a {
 padding: 10px 24px;
 opacity: 0;
 color: rgb(255, 255, 255);
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 1.2px;
 transform: translateX(-20px);
 transition: all 0.2s ease;
 }
  
.nav-btn {
 position: fixed;
 right: 10px;
 top: 10px;
 display: block;
 width: 48px;
 height: 48px;
 cursor: pointer;
 z-index: 9999;
 border-radius: 50%;
 }
  
.nav-btn i {
 display: block;
 width: 20px;
 height: 2px;
 background: rgb(255, 255, 255);
 border-radius: 2px;
 margin-left: 14px;
}
  
.nav-btn i:nth-child(1) {
 margin-top: 16px;
}
  
.nav-btn i:nth-child(2) {
 margin-top: 4px;
 opacity: 1;
}
  
.nav-btn i:nth-child(3) {
 margin-top: 4px;
}

}
  
 #nav:checked + .nav-btn {
 transform: rotate(45deg);
  
 }

 #nav:checked + .nav-btn li {
 background: #000;
 transition: transform 0.2s ease;
 }

 #nav:checked + .nav-btn i:nth-child(1) {
 transform: translateY(6px) rotate(180deg);
 }

 #nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
 }

 #nav:checked + .nav-btn i:nth-child(3) {
 transform: translateY(-6px) rotate(90deg);
 }

 #nav:checked + .nav-btn i:nth-child(4) {
 opacity: 0;
 }

 #nav:checked ~ .nav-wrapper {
 z-index: 9990;
 opacity: 1;
 }

 #nav:checked ~ .nav-wrapper ul li a {
 opacity: 1;
 transform: translateX(0);
 }

.hidden {
 display: none;
 } 

  .bg-nav {
  background: #000;

  }

 .bg-nav ul {
  padding: 10px;
  }

`

很抱歉代碼很長因為我是一個幾乎沒有 JS 經驗的初學者,所以我想知道是否有任何解決方案。 CSS 有解決辦法嗎還是需要用JS。 任何幫助,將不勝感激

我不認為你只能用 CSS 來做到這一點,因為它需要孩子 - >父母關系。

如果您可以使用 JS,則只需將 #nav 復選框設置為“false”

const onLinkClick = () => {
  document.querySelector("#nav").checked = false; // Once link is clicked -> make #nav checkbox false thus close the menu
};

document
  .querySelectorAll(".nav-wrapper a") // Grab all links
  .forEach((element) => element.addEventListener("click", onLinkClick)); // Listen for click on them

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM