Всем Привет! В этом видео мы создадим адаптивное горизонтальное и мобильное навигационное меню используя HTML CSS и JavaScript. Надеюсь, это видео будет полезным для вас. Скачать коды можно по ссылке ниже.
Кроме того, если у вас есть какие-либо вопросы, предложения или отзывы, то оставьте комментарий ниже. Ваши отзывы помогают нам создавать более ценный контент.
HTML КОД:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Responsive Navigation Menu</title>
<!--font awesome(for icons)-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<!--css file-->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="nav">
<i class="fas fa-bars menu-btn"></i>
<a href="#" class="logo">Navbar</a>
<div class="links">
<a href="#">Home</a>
<a href="#">Services</a>
<a href="#">Products</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<button class="btn">Login</button>
</nav>
<div class="home">
<div class="content">
<h1>Responsive Navbar</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate id
nihil corporis neque reiciendis distinctio laudantium, perspiciatis
aliquid odio debitis rem saepe tempora voluptas, aliquam ipsa eius
iusto totam dignissimos!
</p>
<a href="#" class="btn">Subscribe</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>
CSS КОД:
/* Google Fonts(Poppins) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
font-family: "Poppins", sans-serif;
text-decoration: none;
list-style: none;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background: url(bg.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
background: #f0f8ff;
padding: 20px 6%;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav .logo {
font-size: 30px;
font-weight: 600;
color: #4070f4;
letter-spacing: 1px;
}
.nav .links a {
position: relative;
font-size: 18px;
font-weight: 500;
margin-left: 20px;
color: #111;
}
.nav .links a::before {
position: absolute;
content: "";
width: 100%;
height: 3px;
background: #4070f4;
left: 0;
bottom: -2px;
border-radius: 10px;
transform: scale(0);
transition: 0.5s;
}
.nav .links a:hover:before {
transform: scale(1);
}
.btn {
background: #4070f4;
padding: 8px 30px;
color: #fff;
border: none;
font-size: 18px;
font-weight: 500;
border-radius: 10px;
cursor: pointer;
transition: 0.5s;
}
.btn:hover {
transform: scale(1.1);
}
.home {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 6%;
color: #fff;
}
.home .content {
max-width: 800px;
}
.home .content h1 {
font-size: 60px;
}
.home .content p {
color: #999;
}
.home .content .btn {
background: #fff;
color: #4070f4;
display: inline-block;
margin-top: 20px;
}
.nav .menu-btn {
font-size: 25px;
color: #111;
cursor: pointer;
display: none;
}
@media (max-width: 800px) {
.nav {
padding: 4%;
}
.nav .links a {
margin-left: 15px;
}
}
@media (max-width: 740px) {
.nav .links {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #f0f8ff;
padding: 0 4%;
height: 0;
overflow: hidden;
transition: 0.5s;
}
.nav.active .links {
height: 290px;
}
.nav .links a {
display: block;
margin: 10px 0;
text-align: center;
padding: 8px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 5px;
transition: 0.5s;
}
.nav .links a::before {
background: none;
}
.nav .links a:hover {
background: #4070f4;
color: #fff;
}
.nav .menu-btn {
display: block;
}
.home .content h1 {
font-size: 45px;
}
}
JAVASCRIPT КОД:
let menuBtn = document.querySelector(".menu-btn");
let nav = document.querySelector(".nav");
menuBtn.addEventListener("click", () => {
nav.classList.toggle("active");
});
0 Комментарии