Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/timing-no-entrance-context-menu.md
1---2title: No Entrance Animation on Context Menus3impact: HIGH4impactDescription: Entrance animations on context menus delay access to options and feel unnecessary for ephemeral UI.5tags: timing, context-menu, entrance6---78## No Entrance Animation on Context Menus910Context menus should not animate on entrance (exit only).1112**Incorrect (animates entrance):**1314```tsx15<motion.div initial={{ opacity: 0 }} animate={{ opacity: 1 }} />16```1718**Correct (exit only):**1920```tsx21<motion.div exit={{ opacity: 0 }} />22```23