search

goog.fx.Animation.EventType

Provided By
Typestring

Events fired by the animation.

Values

ANIMATE

Dispatched each frame of the animation. This is where the actual animator will listen.

BEGIN

Dispatched only when the animation starts from the beginning.

warning Deprecated

Use goog.fx.Transition.EventType.BEGIN.

DESTROY

Dispatched when the animation is destroyed.

END

Dispatched when animation comes to the end of its duration OR stop is called.

warning Deprecated

Use goog.fx.Transition.EventType.END.

FINISH

Dispatched only when animation comes to its end naturally.

warning Deprecated

Use goog.fx.Transition.EventType.FINISH.

PAUSE

Dispatched when an animation is paused.

warning Deprecated

Use goog.fx.Transition.EventType.PAUSE.

PLAY

Dispatched when played for the first time OR when it is resumed.

warning Deprecated

Use goog.fx.Transition.EventType.PLAY.

RESUME

Dispatched only when animation is restarted after a pause.

warning Deprecated

Use goog.fx.Transition.EventType.RESUME.

STOP

Dispatched only when stop is called.

warning Deprecated

Use goog.fx.Transition.EventType.STOP.