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/duration-shorten-before-curve.md
1---2title: Shorten Duration Before Adjusting Curve3impact: MEDIUM4tags: duration, optimization5---67## Shorten Duration Before Adjusting Curve89If animation feels slow, shorten duration before adjusting curve.1011**Incorrect (adjusting curve instead):**1213```css14.element { transition: 400ms cubic-bezier(0, 0.9, 0.1, 1); }15```1617**Correct (shorter duration):**1819```css20.element { transition: 200ms ease-out; }21```22