A-Tractor - v2.3.1
    Preparing search index...

    Interface IMediaTimePointerOptions

    Interface for MediaTimePointer options.

    interface IMediaTimePointerOptions {
        enableControl?: boolean;
        mode?: EnumMediaTimePointerMode;
        pointerClass?: string;
        pointerDebounceDelay?: number;
        pointerElement?: HTMLElement;
        pointerStyle?: any;
    }
    Index

    Properties

    enableControl?: boolean

    Enable or disable pointer movement on mouse click or drag. true means the pointer will be controlled by the mouse click.

    true by default.

    Mode to draw the pointer.

    line by default.

    pointerClass?: string

    CSS class name for auto generated pointer element. If this property is set the pointerStyle property will be ignored.

    pointerDebounceDelay?: number

    The delay in milliseconds for the pointer when the user moves it.

    500 by default.

    pointerElement?: HTMLElement

    Reference to the HTML element which could be used as a pointer instead of auto generated. pointerStyle and pointerClass will not be applied to this element.

    pointerStyle?: any

    HTML element styles properties for auto generated pointer element.

    For example:

    { background: '#f00', width: '10px' }