UNPKG

css-in-js-easing

Version:

This library retrieves easing-function for CSS property.

59 lines (58 loc) 3.77 kB
export declare const linear = "linear"; export declare const linearFunction: (x: number) => number; export declare const ease = "ease"; export declare const easeFunction: (x: number) => number; export declare const easeIn = "ease-in"; export declare const easeInFunction: (x: number) => number; export declare const easeOut = "ease-out"; export declare const easeOutFunction: (x: number) => number; export declare const easeInOut = "ease-in-out"; export declare const easeInOutFunction: (x: number) => number; export declare const easeInSine = "cubic-bezier(0.12, 0, 0.39, 0)"; export declare const easeInSineFunction: (x: number) => number; export declare const easeOutSine = "cubic-bezier(0.61, 1, 0.88, 1)"; export declare const easeOutSineFunction: (x: number) => number; export declare const easeInOutSine = "cubic-bezier(0.37, 0, 0.63, 1)"; export declare const easeInOutSineFunction: (x: number) => number; export declare const easeInQuad = "cubic-bezier(0.11, 0, 0.5, 0)"; export declare const easeInQuadFunction: (x: number) => number; export declare const easeOutQuad = "cubic-bezier(0.5, 1, 0.89, 1)"; export declare const easeOutQuadFunction: (x: number) => number; export declare const easeInOutQuad = "cubic-bezier(0.45, 0, 0.55, 1)"; export declare const easeInOutQuadFunction: (x: number) => number; export declare const easeInCubic = "cubic-bezier(0.32, 0, 0.67, 0)"; export declare const easeInCubicFunction: (x: number) => number; export declare const easeOutCubic = "cubic-bezier(0.33, 1, 0.68, 1)"; export declare const easeOutCubicFunction: (x: number) => number; export declare const easeInOutCubic = "cubic-bezier(0.65, 0, 0.35, 1)"; export declare const easeInOutCubicFunction: (x: number) => number; export declare const easeInQuart = "cubic-bezier(0.5, 0, 0.75, 0)"; export declare const easeInQuartFunction: (x: number) => number; export declare const easeOutQuart = "cubic-bezier(0.25, 1, 0.5, 1)"; export declare const easeOutQuartFunction: (x: number) => number; export declare const easeInOutQuart = "cubic-bezier(0.76, 0, 0.24, 1)"; export declare const easeInOutQuartFunction: (x: number) => number; export declare const easeInQuint = "cubic-bezier(0.64, 0, 0.78, 0)"; export declare const easeInQuintFunction: (x: number) => number; export declare const easeOutQuint = "cubic-bezier(0.22, 1, 0.36, 1)"; export declare const easeOutQuintFunction: (x: number) => number; export declare const easeInOutQuint = "cubic-bezier(0.83, 0, 0.17, 1)"; export declare const easeInOutQuintFunction: (x: number) => number; export declare const easeInExpo = "cubic-bezier(0.7, 0, 0.84, 0)"; export declare const easeInExpoFunction: (x: number) => number; export declare const easeOutExpo = "cubic-bezier(0.16, 1, 0.3, 1)"; export declare const easeOutExpoFunction: (x: number) => number; export declare const easeInOutExpo = "cubic-bezier(0.87, 0, 0.13, 1)"; export declare const easeInOutExpoFunction: (x: number) => number; export declare const easeInCirc = "cubic-bezier(0.55, 0, 1, 0.45)"; export declare const easeInCircFunction: (x: number) => number; export declare const easeOutCirc = "cubic-bezier(0, 0.55, 0.45, 1)"; export declare const easeOutCircFunction: (x: number) => number; export declare const easeInOutCirc = "cubic-bezier(0.85, 0, 0.15, 1)"; export declare const easeInOutCircFunction: (x: number) => number; export declare const easeInBack = "cubic-bezier(0.36, 0, 0.66, -0.56)"; export declare const easeInBackFunction: (x: number) => number; export declare const easeOutBack = "cubic-bezier(0.34, 1.56, 0.64, 1)"; export declare const easeOutBackFunction: (x: number) => number; export declare const easeInOutBack = "cubic-bezier(0.68, -0.6, 0.32, 1.6)"; export declare const easeInOutBackFunction: (x: number) => number;