UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

20 lines (17 loc) 334 B
export interface ISnapWheelProps { /** * Enable or disable mouse wheel events for progress control * @default false */ hasWheel?: boolean; /** * Speed factor for mouse wheel movements * @default 1 */ wheelSpeed?: number; /** * Wheel axis * @default 'auto' */ wheelAxis?: 'x' | 'y' | 'auto'; }