심플 다크 모드 메가 메뉴
보색 구성표와 함께 다크 모드를 사용하는 비즈니스 웹 사이트를 위한 간단하고 반응이 빠른 메가 메뉴 구성 요소입니다. Tailwind CSS로 구축되었으며 어두운 테마를 지원하고 JavaScript가 없습니다.
HTML 코드
<header class="bg-gray-900 text-gray-300">
<nav class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<a href="#" class="text-xl font-bold text-white">Your Logo</a>
<div class="hidden md:flex space-x-8">
<div class="relative group">
<button class="hover:text-white">Menu 1</button>
<div class="absolute z-10 hidden group-hover:block bg-gray-800 p-6 rounded-md">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<h3 class="font-bold text-white mb-2">Category 1</h3>
<ul>
<li><a href="#" class="block hover:text-white py-1">Link 1</a></li>
<li><a href="#" class="block hover:text-white py-1">Link 2</a></li>
<li><a href="#" class="block hover:text-white py-1">Link 3</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-white mb-2">Category 2</h3>
<ul>
<li><a href="#" class="block hover:text-white py-1">Link A</a></li>
<li><a href="#" class="block hover:text-white py-1">Link B</a></li>
<li><a href="#" class="block hover:text-white py-1">Link C</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="relative group">
<button class="hover:text-white">Menu 2</button>
<div class="absolute z-10 hidden group-hover:block bg-gray-800 p-6 rounded-md">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<h3 class="font-bold text-white mb-2">Category X</h3>
<ul>
<li><a href="#" class="block hover:text-white py-1">Link X1</a></li>
<li><a href="#" class="block hover:text-white py-1">Link X2</a></li>
<li><a href="#" class="block hover:text-white py-1">Link X3</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-white mb-2">Category Y</h3>
<ul>
<li><a href="#" class="block hover:text-white py-1">Link Y1</a></li>
<li><a href="#" class="block hover:text-white py-1">Link Y2</a></li>
<li><a href="#" class="block hover:text-white py-1">Link Y3</a></li>
</ul>
</div>
</div>
</div>
</div>
<a href="#" class="hover:text-white">About</a>
<a href="#" class="hover:text-white">Contact</a>
</div>
<div class="md:hidden">
<button class="text-gray-300 hover:text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
</nav>
</header>
관련 구성 요소
메가 메뉴 컴포넌트
Tailwind CSS를 사용하여 구축된 회색조 색 구성표가 있는 간단한 다크 모드 전자 상거래 메가 메뉴 구성 요소입니다. 반응형이며 Tailwind의 dark: 접두사를 사용하여 어두운 테마에 대한 지원을 포함합니다.
메가 메뉴 컴포넌트
미니멀리스트/플랫 디자인, 생생한 색 구성표, 복잡한 복잡성 수준이 있는 메가 메뉴 구성 요소, 대시보드 목적, Tailwind CSS 사용. 어두운 테마를 지원하는 반응형 디자인. JavaScript 코드는 없으며 Tailwind 클래스가있는 HTML 만 있습니다. 다크 모드는 스타일링을 위해 Tailwind의 dark: 접두사를 사용합니다. 이미지는 아바타에 picsum.photos 및 randomuser.me 를 사용합니다.