AnimationEvent
[ Interface ]
export interface AnimationEvent extends IResultObject {
animationName: string;
elapsedTime: number;
JQueryEvent?: JQuery.Event<HTMLElement>;
}
Contains information about events that occur during the course of an animation. This interface extends TcHmi.IResultObject.
Properties
Name | Type | Description |
---|---|---|
error | Error state of the request. | |
details [ optional ] | Optional error details. Content depends on the function used and the error. | |
animationName | The name of the animation. | |
elapsedTime | The elapsed time since the start of the animation. | |
JQueryEvent [ Optional ] | If the animation runs over CSS, the event object normalized by jQuery. |
Available from 1.8 |