File "constants.ts"
Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/components/Scroll/constants.ts
File
size: 540 B (540 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
/**
* Triggers the bounce effect when the diff becomes less than this value.
*
* @since 3.0.0
*/
export const BOUNCE_DIFF_THRESHOLD = 10;
/**
* The duration of the bounce effect.
*
* @since 3.0.0
*/
export const BOUNCE_DURATION = 600;
/**
* The friction factor.
*
* @since 3.0.0
*/
export const FRICTION_FACTOR = 0.6;
/**
* The velocity to calculate the scroll duration.
*
* @since 3.0.0
*/
export const BASE_VELOCITY = 1.5;
/**
* The minimum duration of scroll.
*
* @since 3.0.0
*/
export const MIN_DURATION = 800;