导航增强组件

一个为深色模式设计并使用 Tailwind CSS 的响应式导航组件,具有 logo、图像和头像的占位符。

预览

HTML 代码

<nav class="bg-gray-900 text-white p-4 shadow-lg">
    <div class="container mx-auto flex justify-between items-center">
        <div class="flex items-center">
            <img src="https://picsum.photos/50" alt="Logo" class="mr-3 rounded-full">
            <span class="text-xl font-bold">MyApp</span>
        </div>
        <div class="hidden md:flex space-x-4">
            <a href="#" class="hover:text-gray-300">Home</a>
            <a href="#" class="hover:text-gray-300">About</a>
            <a href="#" class="hover:text-gray-300">Services</a>
            <a href="#" class="hover:text-gray-300">Contact</a>
        </div>
        <div class="flex items-center">
            <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Avatar" class="w-10 h-10 rounded-full border border-gray-700">
            <button class="ml-4 p-2 bg-gray-700 rounded hover:bg-gray-600 focus:outline-none">Menu</button>
        </div>
    </div>
</nav>
<div class="bg-gray-800 text-white p-4">
    <div class="container mx-auto flex flex-col md:flex-row md:justify-between">
        <div class="flex items-center mb-4 md:mb-0">
            <img src="https://picsum.photos/100/100" alt="Placeholder Image" class="rounded-lg">
            <p class="ml-4">This is a simple navigation enhancement component in dark mode.</p>
        </div>
        <div class="flex space-x-4">
            <a href="#" class="bg-gray-700 px-4 py-2 rounded hover:bg-gray-600">Action 1</a>
            <a href="#" class="bg-gray-700 px-4 py-2 rounded hover:bg-gray-600">Action 2</a>
        </div>
    </div>
</div>
<style>
    @media (prefers-color-scheme: dark) {
        body {
            background-color: #1a202c;
            color: #fff;
        }
    }
</style>

相关组件

深色模式媒体导航

一个复杂的响应式导航组件,适用于娱乐/媒体平台,具有深色模式 UI 和森林/绿色调色板。包括徽标、搜索栏、导航链接、用户配置文件和通知铃铛。

打开

受纸张/印刷启发的政府导航

一个复杂的、受纸张/印刷品启发的导航组件,适用于政府/公共网站,具有棕褐色/棕色色调、响应能力和深色模式支持。它包括主要导航、搜索和“快速链接”或“服务”部分。

打开

Cyberpunk_Portfolio_Navigation

一个复杂的响应式赛博朋克主题导航组件,用于产品组合,具有未来主义的霓虹紫色美学、深色背景和交互式元素。包括深色模式支持。

打开