Interface IMarqueeMutableProps

Mutable properties for the Marquee component.

interface IMarqueeMutableProps {
    __mutableProp?: null;
    adjustSpeed?: boolean;
    centered?: boolean;
    enabled?: boolean;
    gap?: string | number;
    pauseOnHover?: boolean;
    pauseOnOut?: boolean;
    speed?: string | number;
}

Hierarchy (View Summary)

Properties

__mutableProp?: null
adjustSpeed?: boolean

When need to use dynamic FPS factor to adjust the speed of the marquee.

true
centered?: boolean

Centers the marquee content within the container.

false
enabled?: boolean

Enables or disables the marquee animation. When false, the marquee will be paused.

true
gap?: string | number

The gap between the marquee elements. Supports css units like px, rem, vw, vh, svh.

0
pauseOnHover?: boolean

Pauses the marquee when the mouse hovers over it.

false
pauseOnOut?: boolean

Pauses the marquee when the mouse leaves the viewport.

true
speed?: string | number

The speed of the marquee animation. Supports css units like px, rem, vw, vh, svh.

1