Additional easing #19710
andrilla-francis
started this conversation in
Ideas
Additional easing
#19710
Replies: 1 comment 1 reply
-
|
The addition of an exponential ease is a game-changer for perceived latency. In high-performance interfaces, that "instant" start from For those implementing this in the current v4 environment, you can integrate these directly into your theme to maintain design consistency across the system. Refined integration for your @theme {
--ease-exponential: cubic-bezier(0.25, 0.5, 0, 1);
--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I love how Tailwind modifies the standard named transition-timing-function values to use better looking cubic-bezier functions. I think it would be great to have a couple more simple options by default. I always add these to my projects, and I tend to use the exponential one by default.
Exponential movement tends to look best for hover transitions, because you can feel the instant interaction, while still feeling very smooth.
Spring movement is really helpful to have for a more playful or loose feel.
Beta Was this translation helpful? Give feedback.
All reactions