Swiper - v12.1.0
    Preparing search index...
    interface MousewheelOptions {
        enabled?: boolean;
        eventsTarget?: HTMLElement | "container" | "wrapper" | CSSSelector;
        forceToAxis?: boolean;
        invert?: boolean;
        noMousewheelClass?: string;
        releaseOnEdges?: boolean;
        sensitivity?: number;
        thresholdDelta?: number | null;
        thresholdTime?: number | null;
    }
    Index

    Properties

    enabled?: boolean

    Set to true to enable mousewheel control

    false
    
    eventsTarget?: HTMLElement | "container" | "wrapper" | CSSSelector

    String with CSS selector or HTML element of the container accepting mousewheel events. By default it is swiper

    'container'
    
    forceToAxis?: boolean

    Set to true to force mousewheel swipes to axis. So in horizontal mode mousewheel will work only with horizontal mousewheel scrolling, and only with vertical scrolling in vertical mode.

    false
    
    invert?: boolean

    Set to true to invert sliding direction

    false
    
    noMousewheelClass?: string

    Scrolling on elements with this class will be ignored

    'swiper-no-mousewheel'
    
    releaseOnEdges?: boolean

    Set to true and swiper will release mousewheel event and allow page scrolling when swiper is on edge positions (in the beginning or in the end)

    false
    
    sensitivity?: number

    Multiplier of mousewheel data, allows to tweak mouse wheel sensitivity

    1
    
    thresholdDelta?: number | null

    Minimum mousewheel scroll delta to trigger swiper slide change

    null
    
    thresholdTime?: number | null

    Minimum mousewheel scroll time delta (in ms) to trigger swiper slide change

    null