, поэтому я пытаюсь закрыть панель навигации при нажатии на ссылку. ссылки при нажатии направлены в раздел, а не на новую страницу. панель навигации, когда она на большом экране, я хочу, чтобы она все еще показывалась, но когда она на маленьком экране, я хочу, чтобы меню бургера автоматически закрывалось, когда, например, нажата ссылка nextevent, есть идеи?
<body>
<nav>
<header class="header d-flex align-items-center container-fluid">
<div class="row align-items-center flex-grow-1">
<div class="col-auto">
<div class="logo">
<h4>thomas<br> venutu</h4>
</div>
</div>
<ul class="nav-links ">
<li><a href="#section2">Home</a> </li>
<li><a href="#section2">NextEvent</a> </li>
<li><a href="index">Music </a> </li>
<li><a href="index">About</a> </li>
<li><a href="index">Boooking</a> </li>
</ul>
<div class="burger">
<div class="line2"></div>
<div class="line1"></div>
<div class="line3"></div>
</div>
</div>
</header>
</nav>
#
html{
scroll-behavior: smooth;
}
#extra space{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#section2 {
color: #fff;
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
text-align: center;
padding: 5em 0 5em 0;
margin: 0;
background-size: 125% auto;
}
#section2 header {
margin: 0 0 2em 0;
}
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.header {
position:sticky;
top:0;
min-height: 12vh;
background-color: #0c0c0c;
}
.logo{
color:whitesmoke;
text-transform: uppercase;
letter-spacing: 5px;
font-size:22px;
}
.nav-links{
display:flex!important;
justify-content: space-around!important;
width: 100%!important;
}
.nav-links li{
list-style: none;
}
.burger div{
width: 25px;
height: 5px;
background-color:whitesmoke;
margin:3px;
}
.burger{
display:none;
cursor: pointer;
}
.nav-links a{
color:whitesmoke;
text-decoration: none;
letter-spacing: 3px;
text-transform: uppercase;
font-size: 14px;
}
@media screen and (max-width:1024px){
.nav-links{
display:inline-flex;
justify-content: space-around;
width: 60%;
}
}
@media screen and (max-width:768px){
body{
overflow-x:hidden;
}
.nav{
position: fixed;
top: 0;
}
.nav-links{
font-size: 1px;
position:fixed;
right:0px;
height:92vh;
top: 0px;
background-color: #0c0c0c;
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
transform: translateX(100%);
transition: transform 0.5s ease-in;
}
.nav-disable{
transform: translateX(100%);
}
.nav-links li{
;
}
.burger{
display: block;
position: absolute;
top: 8px;
right: 16px;
}
.nav-active{
transform: translateX(30%);
}
#section2 {
background-image:url("background image venuto4.jpg");
background-repeat:no-repeat;
height: 100%;
width:100% ;
background-color: black;
}
#getting-started{
font-size:12px;
}
#day{
font-size:14px;
}
#minutes{
font-size:14px;
}
#hours{
font-size:12px;
}
}
#section1 {
background-image: url("background6.png");
background-position: center center;
background-repeat: no-repeat;
width: 100vw;
height: 100vh;
background-attachment: fixed;
background-size: cover;
background-color:black;
}
#section2 {
background-image:url("background image venuto4.jpg");
background-image:no-repeat;
height: 100%;
width:100% ;
background-color: black;
}
#section3 {
background-color: black;
height: 100%;
}
#section4 {
background-color: whitesmoke;
height: 700px;
}
#section5 {
background-color: yellow;
height: 700px;
}
.btn-info{
text-transform: uppercase;
font-size: 25px;
}
.card-img-top{
height: 150px;
width: 100px;
}
h1{color: #3b3e42;
}
js
const navSlide = () => {
const burger = document.querySelector('.burger');
const nav = document.querySelector('.nav-links');
const navLinks = document.querySelectorAll('.nav-links li');
burger.addEventListener('click', () => {
nav.classList.toggle('nav-active');
});
navLinks.forEach((link, index) => {
link.style.animation = `navLinkFade 0.5s ease forwards ${index / 7}s`;
console.log(index / 7);
nav.classList.toggle('nav-disable');
});
navLinks.addEventListener('click', () => {
nav.classList.toggle('nav-active');
});
}
navSlide();
необходимо исправить
navLinks.addEventListener('click', () => {
nav.classList.toggle('nav-active');
});