According to this article on W3C for CSS Transitions, it is said to be
ease
The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1).
ease-in-out
The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1)
And I think the difference is obvious in terms of numbers, but what is the actual difference and why should one have an option of ease-in-out
separately?
Could somebody please explain the actual usage?
UPDATE
This may be regarded as a duplicate for
Difference between CSS3 transitions' ease-in and ease-out
But it is not, as the accepted answer on the referenced question just tells:
ease
is likeease-in-out
, except it starts slightly faster than it ends.
And I already know that. My question is, as stated above, about the practical usage.