AngularTS
    Preparing search index...

    Interface Animator

    Handle returned by an animation factory (CSS or JS) that can be started or ended.

    start() begins the animation and returns a runner. end() forces completion (may be synchronous depending on driver).

    interface Animator {
        _willAnimate: boolean;
        end(): void;
        start(): AnimateRunner;
    }
    Index

    Properties

    Methods

    Properties

    _willAnimate: boolean

    Whether this handle is expected to perform a real animation.

    Methods

    • Force-finish the animation (may be sync).

      Returns void