Interface HighlightSelectorOptions

Options for the highlightSelector helpers.

interface HighlightSelectorOptions {
    blink?: boolean;
    blinkInterval?: number;
    color?: string;
    ensureVisible?: boolean;
}

Properties

blink?: boolean

If true, the highlight will blink.

blinkInterval?: number

The interval in milliseconds for the highlight to blink.

color?: string

Customize the color for the highlight. Can be any css color value.

ensureVisible?: boolean

If true, only apply the highlight to visible elements.