Transitions

transition-timing-function property

ease
Default value. Specifies a transition effect with a slow start, then fast, then end slowly
linear

Specifies a transition effect with the same speed from start to end (equivalent to cubic-bezier(0,0,1,1))
ease-in

Specifies a transition effect with a slow start (equivalent to cubic-bezier(0.42,0,1,1))
ease-outSpecifies a transition effect with a slow end (equivalent to cubic-bezier(0,0,0.58,1))
ease-in-outSpecifies a transition effect with a slow start and end (equivalent to cubic-bezier(0.42,0,0.58,1))

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top