简介
在今天的教程中,我们将逐步创建一个具有时尚设计、动态动画和现代效果的超优质可扩展导航栏。此高级导航栏具有以下功能:
高端美感的动画粒子背景。
具有悬停效果的发光图标。
突出显示活动部分的动态选择指示器。
流畅的动画和过渡,打造专业的外观。
该导航栏采用 HTML、CSS 和 JavaScript 构建,非常适合高质量 Web 界面并增强用户体验,使其成为任何项目的绝佳补充,包括《角斗士之战》等互动游戏。让我们开始吧!
第 1 步:设置 HTML 结构
我们的可扩展导航栏使用 Font Awesome 图标、切换按钮和自定义数据工具提示属性来为每个图标提供描述。这种标记为我们提供了一个灵活的构建结构。
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Expandable Premium Navbar</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <link rel="stylesheet" href="styles.css"> <!-- Particle Background --> <div> <p>Key HTML Elements<br> Particle Background: Provides a subtle, animated effect behind the navbar for a high-end look.<br> Toggle Button: Allows users to expand or collapse the navbar.<br> Nav Items: Each item includes a tooltip, an icon, and some have notification badges.<br> Selection Indicator: Highlights the active section with a glowing effect.<br> Step 2: Styling the Navbar with CSS<br> Our CSS will focus on creating a luxurious, modern design with animated background particles, hover effects, and tooltip displays. Let’s go through each part.</p> <p>Base Styles and Background Setup<br> </p> <pre class="brush:php;toolbar:false">body { display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; background: radial-gradient(circle, #1b1b2f, #121212); font-family: Arial, sans-serif; overflow: hidden; position: relative; } /* Particle Background */ #particle-background { position: absolute; width: 100%; height: 100%; z-index: 0; background: url('https://www.transparenttextures.com/patterns/dark-matter.png'); animation: particleAnimation 30s linear infinite; opacity: 0.3; } @keyframes particleAnimation { 0% { background-position: 0 0; } 100% { background-position: 1000px 1000px; } } Navbar Styling The navbar includes a semi-transparent background with a subtle blur effect to achieve a glassy look, which expands and collapses smoothly. css Copier le code .navbar { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); padding: 15px; border-radius: 40px; backdrop-filter: blur(15px); box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6); transition: width 0.4s ease, padding 0.4s ease; gap: 15px; width: 60px; overflow: hidden; position: relative; z-index: 1; } .navbar.expanded { width: 360px; padding: 15px 20px; justify-content: flex-start; }
切换按钮
切换按钮可展开和折叠导航栏,并在悬停时显示旋转动画。
.toggle-button { display: flex; align-items: center; justify-content: center; font-size: 24px; color: #ffffff; cursor: pointer; transition: transform 0.3s ease, color 0.3s ease; } .toggle-button:hover { color: #ff00cc; transform: rotate(90deg); }
导航项和工具提示效果
每个导航项都有一个带有渐变和发光背景的悬停效果。工具提示以柔和的阴影效果出现以引导用户。
.nav-item { position: relative; padding: 12px; font-size: 24px; color: #ffffff; cursor: pointer; border-radius: 15px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); } .nav-item:hover { background: linear-gradient(135deg, rgba(255, 0, 204, 0.4), rgba(51, 51, 255, 0.4)); transform: translateY(-5px) scale(1.05); } .nav-item::before { content: attr(data-tooltip); position: absolute; bottom: -45px; left: 50%; transform: translateX(-50%); font-size: 12px; color: #ffffff; background: rgba(30, 30, 30, 0.85); padding: 8px 12px; border-radius: 8px; opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; backdrop-filter: blur(8px); } .nav-item:hover::before { opacity: 1; transform: translateY(-8px); }
选择指示器和通知徽章
.selection-indicator { position: absolute; bottom: 10px; height: 4px; width: 30px; background: linear-gradient(90deg, #ff00cc, #3333ff); border-radius: 2px; transition: transform 0.3s ease, width 0.3s ease; z-index: -1; } /* Notification Badge */ .notification-badge { position: absolute; top: 5px; right: 5px; background: linear-gradient(45deg, #ff0000, #ff4d4d); color: #ffffff; border-radius: 50%; padding: 4px 7px; font-size: 12px; font-weight: bold; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); animation: pulse 1.8s infinite ease-in-out; }
第 3 步:添加 JavaScript 以实现交互
JavaScript 控制导航栏的可展开状态、活动项目和选择指示器。它还可以在调整大小时使指示器与所选项目保持对齐。
const toggleButton = document.querySelector('.toggle-button'); const navbar = document.querySelector('.navbar'); const navItems = document.querySelectorAll('.nav-item'); const selectionIndicator = document.querySelector('.selection-indicator'); // Toggle the expanded state of the navbar toggleButton.addEventListener('click', () => { navbar.classList.toggle('expanded'); toggleButton.querySelector('i').classList.toggle('fa-bars'); toggleButton.querySelector('i').classList.toggle('fa-times'); }); // Update selection indicator position function updateSelectionIndicator(activeItem) { const itemRect = activeItem.getBoundingClientRect(); const navbarRect = navbar.getBoundingClientRect(); const offsetX = itemRect.left - navbarRect.left + navbar.scrollLeft; selectionIndicator.style.transform = `translateX(${offsetX}px)`; selectionIndicator.style.width = `${itemRect.width}px`; } // Handle nav item selection navItems.forEach((item) => { item.addEventListener('click', () => { navItems.forEach(nav => nav.classList.remove('active')); item.classList.add('active'); updateSelectionIndicator(item); }); }); // Initialize the position of the selection indicator on page load document.addEventListener('DOMContentLoaded', () => { const activeItem = document.querySelector('.nav-item.active'); if (activeItem) { updateSelectionIndicator(activeItem); } });
结论
创建具有动态动画和直观界面的优质可扩展导航栏可以提升任何 Web 项目的水平。通过用于设计的 CSS 和用于交互的 JavaScript,我们构建了一个灵活的组件,非常适合 Gladiators Battle 等高端应用程序。该导航栏的平滑过渡、发光效果和可扩展功能提供了专业且现代的用户体验。
?发现更多:
探索角斗士之战:潜入古代武士的世界,体验战略游戏玩法,网址为 https://gladiatorsbattle.com
查看我们的 GitHub:查看代码示例和文档:https://github.com/HanGPIErr/Gladiators-Battle-Documentation
在 LinkedIn 上联系:在 https://www.linkedin.com/in/pierre-romain-lopez/
上关注我
关注 X:在 https://x.com/GladiatorsBT
上了解设计和游戏项目的最新动态
请继续关注有关使用 HTML、CSS 和 JavaScript 创建高级 Web 组件的更多教程!
以上是如何创建具有动态效果和选择指示器的超高级可扩展导航栏的详细内容。更多信息请关注PHP中文网其他相关文章!

Python和JavaScript在社区、库和资源方面的对比各有优劣。1)Python社区友好,适合初学者,但前端开发资源不如JavaScript丰富。2)Python在数据科学和机器学习库方面强大,JavaScript则在前端开发库和框架上更胜一筹。3)两者的学习资源都丰富,但Python适合从官方文档开始,JavaScript则以MDNWebDocs为佳。选择应基于项目需求和个人兴趣。

从C/C 转向JavaScript需要适应动态类型、垃圾回收和异步编程等特点。1)C/C 是静态类型语言,需手动管理内存,而JavaScript是动态类型,垃圾回收自动处理。2)C/C 需编译成机器码,JavaScript则为解释型语言。3)JavaScript引入闭包、原型链和Promise等概念,增强了灵活性和异步编程能力。

不同JavaScript引擎在解析和执行JavaScript代码时,效果会有所不同,因为每个引擎的实现原理和优化策略各有差异。1.词法分析:将源码转换为词法单元。2.语法分析:生成抽象语法树。3.优化和编译:通过JIT编译器生成机器码。4.执行:运行机器码。V8引擎通过即时编译和隐藏类优化,SpiderMonkey使用类型推断系统,导致在相同代码上的性能表现不同。

JavaScript在现实世界中的应用包括服务器端编程、移动应用开发和物联网控制:1.通过Node.js实现服务器端编程,适用于高并发请求处理。2.通过ReactNative进行移动应用开发,支持跨平台部署。3.通过Johnny-Five库用于物联网设备控制,适用于硬件交互。

我使用您的日常技术工具构建了功能性的多租户SaaS应用程序(一个Edtech应用程序),您可以做同样的事情。 首先,什么是多租户SaaS应用程序? 多租户SaaS应用程序可让您从唱歌中为多个客户提供服务

本文展示了与许可证确保的后端的前端集成,并使用Next.js构建功能性Edtech SaaS应用程序。 前端获取用户权限以控制UI的可见性并确保API要求遵守角色库

JavaScript是现代Web开发的核心语言,因其多样性和灵活性而广泛应用。1)前端开发:通过DOM操作和现代框架(如React、Vue.js、Angular)构建动态网页和单页面应用。2)服务器端开发:Node.js利用非阻塞I/O模型处理高并发和实时应用。3)移动和桌面应用开发:通过ReactNative和Electron实现跨平台开发,提高开发效率。

JavaScript的最新趋势包括TypeScript的崛起、现代框架和库的流行以及WebAssembly的应用。未来前景涵盖更强大的类型系统、服务器端JavaScript的发展、人工智能和机器学习的扩展以及物联网和边缘计算的潜力。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

SublimeText3 Linux新版
SublimeText3 Linux最新版