UNPKG

@adoratorio/hades

Version:

A smooth scrollbar based on Hermes, scroll down 'till hell

9 lines 254 B
const Easings = { LINEAR: (t) => t, QUAD: (t) => t * (2 - t), CUBIC: (t) => (--t) * t * t + 1, QUART: (t) => 1 - (--t) * t * t * t, QUINT: (t) => 1 + (--t) * t * t * t * t, }; export default Easings; //# sourceMappingURL=easing.js.map