Interface IMarqueeStaticProps

Static properties for the Marquee component.

interface IMarqueeStaticProps {
    __staticProp?: null;
    cloneNodes?: boolean;
    container: HTMLElement;
    hasWillChange?: boolean;
    resizeDebounce?: number;
}

Hierarchy (View Summary)

Properties

__staticProp?: null
cloneNodes?: boolean

Indicates whether to clone the marquee nodes. Indicates whether to clone the marquee nodes. Can be set to false if DOM cloning is not preferred.

true
container: HTMLElement

The container element that holds the marquee content.

hasWillChange?: boolean

Determines whether to apply the will-change CSS property to the marquee elements to optimize rendering. Setting this to true may improve performance.

true
resizeDebounce?: number

The debounce delay for the resize event in milliseconds.

0