UNPKG

@haiku/player

Version:

Haiku Player is a JavaScript library for building user interfaces

37 lines 1.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var c = "cubic-bezier"; var s = "steps"; exports.ease = c + "(.25,.1,.25,1)"; exports.easeIn = c + "(.42,0,1,1)"; exports.easeInBack = c + "(.6,-.28,.735,.045)"; exports.easeInCirc = c + "(.6,.04,.98,.335)"; exports.easeInCubic = c + "(.55,.055,.675,.19)"; exports.easeInExpo = c + "(.95,.05,.795,.035)"; exports.easeInOut = c + "(.42,0,.58,1)"; exports.easeInOutBack = c + "(.68,-.55,.265,1.55)"; exports.easeInOutCirc = c + "(.785,.135,.15,.86)"; exports.easeInOutCubic = c + "(.645,.045,.355,1)"; exports.easeInOutExpo = c + "(1,0,0,1)"; exports.easeInOutQuad = c + "(.455,.03,.515,.955)"; exports.easeInOutQuart = c + "(.77,0,.175,1)"; exports.easeInOutQuint = c + "(.86,0,.07,1)"; exports.easeInOutSine = c + "(.445,.05,.55,.95)"; exports.easeInQuad = c + "(.55,.085,.68,.53)"; exports.easeInQuart = c + "(.895,.03,.685,.22)"; exports.easeInQuint = c + "(.755,.05,.855,.06)"; exports.easeInSine = c + "(.47,0,.745,.715)"; exports.easeOut = c + "(0,0,.58,1)"; exports.easeOutBack = c + "(.175,.885,.32,1.275)"; exports.easeOutCirc = c + "(.075,.82,.165,1)"; exports.easeOutCubic = c + "(.215,.61,.355,1)"; exports.easeOutExpo = c + "(.19,1,.22,1)"; exports.easeOutQuad = c + "(.25,.46,.45,.94)"; exports.easeOutQuart = c + "(.165,.84,.44,1)"; exports.easeOutQuint = c + "(.23,1,.32,1)"; exports.easeOutSine = c + "(.39,.575,.565,1)"; exports.elegantSlowStartEnd = c + "(.175,.885,.32,1.275)"; exports.linear = c + "(0,0,1,1)"; exports.stepEnd = s + "(1,0)"; exports.stepStart = s + "(1,1)"; //# sourceMappingURL=cssEasings.js.map