Transition Timing Function
The transition-timing-function property defines the way in which intermediate values are calculated for CSS properties affected by a transition effect.
Class | Properties |
---|---|
wpex-ease-linear | transition-timing-function: linear; |
wpex-ease-in | transition-timing-function: cubic-bezier(0.4, 0, 1, 1); |
wpex-ease-out | transition-timing-function: cubic-bezier(0, 0, 0.2, 1); |
wpex-ease-in-out | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |