Designer News
Where the design community meets.
over 6 years ago from Pedro Botelho, Developer
Not sure.
I want to accomplish the initial (within 2 ms) hover animation to have 0.2 or 0.3 seconds of animation delay for easing purposes, while further hovering will be at 0.
You could use a keyframe animation for the initial firing of the animation, with animation-fill-mode: forwards;
. It'd need some queueing in some way, with javascript probably. But its possible.
Though I personally wouldn't like that. The immediate interaction feedback is valuable.
So you want transition-delay:
Designer News
Where the design community meets.
Designer News is a large, global community of people working or interested in design and technology.
Have feedback?
In response to your edit, are you not looking to use a cubic-bezier function? This is trivial, just use a
transition-timing-function
or specify the cubic-bezier in the shorthand you composed.