bga-animations
    Preparing search index...

    Interface RunningAnimation

    Give all necessary informations about a running animation.

    interface RunningAnimation {
        element?: HTMLElement;
        fromMatrix: DOMMatrixReadOnly;
        fromNextSibling?: HTMLElement;
        fromParent?: HTMLElement;
        toMatrix: DOMMatrixReadOnly;
        toNextSibling?: HTMLElement;
        toParent?: HTMLElement;
        toSpaceWrapper?: HTMLElement;
        wrapper?: HTMLElement;
        wrappersToRemove?: HTMLElement[];
    }
    Index

    Properties

    element?: HTMLElement

    The animated element.

    fromMatrix: DOMMatrixReadOnly

    The computed matrix of the original position.

    fromNextSibling?: HTMLElement

    The original element next sibling (null if it was the last child).

    fromParent?: HTMLElement

    The original element parent.

    toMatrix: DOMMatrixReadOnly

    The computed matrix of the destination position.

    toNextSibling?: HTMLElement

    The destination next sibling (null if it will be the last child).

    toParent?: HTMLElement

    The destination of the element.

    toSpaceWrapper?: HTMLElement

    The temporary wrapper added to the destination during the animation.

    wrapper?: HTMLElement

    The wrapper around the element during the animation

    wrappersToRemove?: HTMLElement[]

    The temporary wrappers to remove at the end of the animation.