<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Navigation Bar</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: IRANSans, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
body {
background: #0d0f12;
color: #eee;
}
nav {
width: 100%;
position: fixed;
top: 0;
right: 0;
z-index: 1000;
background: rgba(20, 20, 25, 0.7);
backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
padding: 15px 40px;
display: flex;
justify-content: space-between;
align-items: center;
transition: .4s ease;
}
nav.scrolled {
background: rgba(15, 17, 22, 0.95);
padding: 10px 40px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.logo {
font-size: 1.7rem;
font-weight: 900;
background: linear-gradient(135deg, #00d4ff, #09ffc4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 1px;
user-select: none;
}
.menu {
display: flex;
gap: 35px;
align-items: center;
}
.menu>li {
list-style: none;
position: relative;
}
.menu>li>a {
text-decoration: none;
color: #ccc;
font-size: 1.05rem;
font-weight: 500;
padding: 8px 5px;
position: relative;
transition: color .3s ease;
user-select: none;
}
.menu>li>a::after {
content: '';
position: absolute;
bottom: -3px;
right: 0;
width: 0;
height: 2px;
background: #00eaff;
transition: width .3s ease;
}
.menu>li>a:hover {
color: #00eaff;
}
.menu>li>a:hover::after {
width: 100%;
left: 0;
right: auto;
}
.dropdown {
position: absolute;
top: 48px;
right: 0;
width: 230px;
background: rgba(26, 29, 34, 0.9);
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
padding: 12px 0;
opacity: 0;
transform: translateY(20px);
pointer-events: none;
transition: all .35s cubic-bezier(0.25, 0.8, 0.25, 1);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.dropdown.is-open {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.dropdown a {
display: block;
padding: 12px 20px;
color: #bbb;
text-decoration: none;
transition: .3s ease;
font-size: .95rem;
user-select: none;
}
.dropdown a:hover {
background: rgba(40, 45, 52, 0.5);
color: #00eaff;
padding-right: 30px;
}
.sub {
position: relative;
}
.sub-menu {
position: absolute;
top: 0;
right: 230px;
width: 210px;
background: rgba(26, 29, 34, 0.9);
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.05);
opacity: 0;
transform: translateX(-20px);
pointer-events: none;
transition: .35s cubic-bezier(0.25, 0.8, 0.25, 1);
padding: 10px 0;
}
.sub-menu.is-open {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
}
.sub-menu a {
display: block;
padding: 12px 20px;
color: #bbb;
text-decoration: none;
font-size: .95rem;
transition: .3s ease;
user-select: none;
}
.sub-menu a:hover {
background: rgba(40, 45, 52, 0.5);
color: #00eaff;
padding-right: 25px;
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 10px;
margin-left: -10px;
user-select: none;
}
.hamburger span {
width: 28px;
height: 3px;
background: #eee;
border-radius: 3px;
transition: .4s ease;
}
@media (max-width: 900px) {
.menu {
position: fixed;
top: 0;
right: -300px;
width: 280px;
height: 100vh;
background: #14161b;
flex-direction: column;
padding-top: 100px;
transition: .5s cubic-bezier(0.25, 0.8, 0.25, 1);
gap: 25px;
box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.menu.active {
right: 0;
}
.menu>li>a {
color: #ddd;
font-size: 1.1rem;
padding: 10px 5px;
}
.menu>li>a::after {
display: none;
}
.dropdown,
.sub-menu {
position: static;
width: auto;
transform: none !important;
opacity: 1;
pointer-events: auto;
background: rgba(26, 29, 34, 0.95);
box-shadow: none;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.06);
margin: 8px 18px;
padding: 8px 0;
display: none;
}
.dropdown.is-open,
.sub-menu.is-open {
display: block;
}
.hamburger {
display: flex;
}
}
</style>
</head>
<body>
<nav id="nav">
<div class="logo">Nav bar</div>
<ul class="menu" id="menu">
<li><a href="#">خانه</a></li>
<li class="has-dropdown">
<a href="#">خدمات ▾</a>
<div class="dropdown" data-dropdown>
<a href="#">طراحی وب</a>
<a href="#" class="sub-trigger">دیجیتال مارکتینگ</a>
<div class="sub" style="position:relative;">
<a href="#" class="sub-trigger">سئو ◂</a>
<div class="sub-menu" data-sub>
<a href="#">سئوی فنی</a>
<a href="#">آنپیج</a>
<a href="#">آفپیج</a>
</div>
</div>
<a href="#">مشاوره</a>
</div>
</li>
<li><a href="#">نمونه کارها</a></li>
<li><a href="#">درباره ما</a></li>
<li><a href="#">تماس</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span><span></span><span></span>
</div>
</nav>
<script>
const nav = document.getElementById('nav');
const hamburger = document.getElementById('hamburger');
const menu = document.getElementById('menu');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 50);
});
hamburger.addEventListener('click', () => {
menu.classList.toggle('active');
});
document.addEventListener('click', (e) => {
const clickedInside = menu.contains(e.target) || hamburger.contains(e.target);
if (!clickedInside && menu.classList.contains('active')) {
menu.classList.remove('active');
}
});
const CLOSE_DELAY = 120;
const dropdownParents = document.querySelectorAll('.has-dropdown');
dropdownParents.forEach(parent => {
const dropdown = parent.querySelector('[data-dropdown]');
if (!dropdown) return;
let closeTimer = null;
const open = () => {
if (closeTimer) clearTimeout(closeTimer);
dropdown.classList.add('is-open');
};
const scheduleClose = () => {
if (closeTimer) clearTimeout(closeTimer);
closeTimer = setTimeout(() => {
const hovering =
parent.matches(':hover') || dropdown.matches(':hover');
if (!hovering) dropdown.classList.remove('is-open');
}, CLOSE_DELAY);
};
parent.addEventListener('mouseenter', open);
parent.addEventListener('mouseleave', scheduleClose);
dropdown.addEventListener('mouseenter', () => {
if (closeTimer) clearTimeout(closeTimer);
dropdown.classList.add('is-open');
});
dropdown.addEventListener('mouseleave', scheduleClose);
});
const subContainers = document.querySelectorAll('.sub');
subContainers.forEach(sub => {
const subTrigger = sub.querySelector('.sub-trigger');
const subMenu = sub.querySelector('[data-sub]');
if (!subTrigger || !subMenu) return;
let closeTimer = null;
const open = () => {
if (closeTimer) clearTimeout(closeTimer);
subMenu.classList.add('is-open');
};
const scheduleClose = () => {
if (closeTimer) clearTimeout(closeTimer);
closeTimer = setTimeout(() => {
const hovering = sub.matches(':hover') || subMenu.matches(':hover');
if (!hovering) subMenu.classList.remove('is-open');
}, CLOSE_DELAY);
};
subTrigger.addEventListener('mouseenter', open);
sub.addEventListener('mouseenter', open);
subTrigger.addEventListener('mouseleave', scheduleClose);
subMenu.addEventListener('mouseenter', open);
subMenu.addEventListener('mouseleave', scheduleClose);
});
document.addEventListener('mousemove', (e) => {
const withinNav = nav.contains(e.target);
if (!withinNav) {
document.querySelectorAll('.dropdown.is-open, .sub-menu.is-open')
.forEach(el => el.classList.remove('is-open'));
}
});
</script>
</body>
</html>