Loading...
Loading...
Use when building instantaneous UI feedback under 100ms - button presses, toggles, state changes that feel immediate and responsive
npx skill4agent add dylantarre/animation-principles instant-0-100msease-out/* Primary choice - immediate start, soft landing */
transition: all 50ms ease-out;
/* Alternative - completely linear for state toggles */
transition: opacity 80ms linear;
/* Button press feedback */
transition: transform 50ms ease-out;.button:active {
transform: scale(0.97);
transition: transform 50ms ease-out;
}
.toggle-on {
background: var(--active);
transition: background 80ms ease-out;
}