skills/megamenu/SKILL.md
Use when you need to display a large number of links in a single menu.
npx skillsauth add thedaviddias/ux-patterns-for-developers megamenuInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Display a large number of links in a single menu
Megamenu is a large, multi-column dropdown panel that expands from a navigation bar to reveal a structured collection of links, categories, and sometimes promotional content. Unlike standard dropdown menus, megamenus use the full or near-full width of the page to organize many navigation options at once. Megamenus help users scan large navigation structures without repeated clicking, making them a staple on enterprise, e-commerce, and content-heavy websites.
Use Megamenu to expose a large set of categorized navigation options in a single, scannable panel. Common scenarios include:
references/pattern.md, then choose the smallest viable variation.Do's ✅
aria-haspopup="true" and aria-expanded on trigger buttonsrole="presentation" or heading elements)role="menu" unless implementing full menu keyboard pattern)Lazy Render Panel Content
const [hasOpened, setHasOpened] = useState(false);
const open = () => { setHasOpened(true); setIsOpen(true); };
// Only render panel DOM after first open
{hasOpened && }
The Problem: The megamenu opens instantly on mouse enter, causing accidental triggers as users move across the navigation bar.
How to Fix It: Add a 200-300ms hover intent delay before opening. Use a timer that cancels if the mouse leaves the trigger before the delay completes.
The Problem:
A gap between the trigger and the panel causes mouseleave to fire on the trigger before mouseenter fires on the panel, closing the menu.
How to Fix It: Use a shared close delay (300ms) that is cancelled when the mouse enters the panel. Alternatively, create an invisible "bridge" element connecting the trigger to the panel.
The Problem: Users can only access the megamenu with a mouse. Keyboard users cannot open, navigate, or close the panel.
How to Fix It: Support Enter/Space to toggle, Escape to close, and Arrow keys or Tab to navigate between links. Return focus to the trigger on close.
For full implementation detail, examples, and testing notes, see references/pattern.md.
Pattern page: https://uxpatterns.dev/patterns/navigation/megamenu
tools
Use when implementing multi-step forms and processes.
content-media
Use when implementing video playback with controls.
development
Use when choosing, comparing, or implementing UX patterns across the UX Patterns for Developers corpus.
tools
Use when implementing user profile and account management.