TimeLine is a class used to create timeline animations.

TimeLine 是一个用来创建时间轴动画的类。

层级 (查看层级一览)

构造函数

属性

scale: number = 1

Scaling the speed of animation playback.

缩放动画播放的速度。

访问器

方法

  • 参数

    • label: string

      The name of the label to add.

    • offset: number

      The offset time in milliseconds from the previous animation.

    返回 TimeLine

    Adds a label to the timeline at a specified offset from the previous animation.

    在时间队列中加入一个标签,相对于上一个动画的偏移时间。

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • target: any

      The target object whose properties are to be tweened.

    • props: any

      The properties to be controlled and their target values.

    • duration: number

      The duration of the tween for the target object.

    • ease: EaseFunction = null

      The type of easing function to be used for the tween.

    • offset: number = 0

      The time offset in milliseconds to delay the start of the tween relative to the previous tween.

    返回 TimeLine

    From the props attribute, slow down to the current state.

    从 props 属性,缓动到当前状态。

  • 参数

    • Label: string

      The name of the label to jump to.

    返回 void

    Jump to a specific label and start playing from there.

    跳转到指定的标签并从那里开始播放。

  • 参数

    • time: number

      The time in milliseconds to jump to within the animation.

    返回 void

    Jumps to a specific time in the animation.

    动画从整个动画的某一时间开始。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • timeOrLabel: any = 0

      The time point or label name to start playing from.

    • loop: boolean = false

      Whether to loop the playback.

    返回 void

    Play the animation from a specified time point or label.

    从指定的时间点或标签名播放动画。

  • 参数

    • label: string

      The label to remove

    返回 void

    Removes a specified label from the timeline.

    移除指定的标签。

  • 参数

    • target: any

      The object to be controlled.

    • props: any

      The properties to be changed during the TWEEN.

    • duration: number

      The duration of the TWEEN for the object.

    • ease: EaseFunction = null

      The easing function to be used.

    • offset: number = 0

      The time offset from the start of the previous TWEEN (in milliseconds).

    返回 TimeLine

    An instance of TimeLine.

    Controls an object to move to a target position.

    控制一个对象,从当前位置移动到目标位置。

  • 参数

    • target: any

      The target object whose properties will be changed.

    • props: any

      The properties to control the object.

    • duration: number

      The duration of the TWEEN for the object.

    • ease: EaseFunction = null

      The type of easing function.

    • offset: number = 0

      The time offset relative to the previous object (in milliseconds).

    返回 TimeLine

    From the props attribute, slow down to the current state.

    从 props 属性,缓动到当前状态。

  • 参数

    • target: any

      The object to be controlled.

    • props: any

      The properties of the object to be controlled.

    • duration: number

      The duration of the TWEEN for the object.

    • ease: EaseFunction = null

      The type of easing.

    • offset: number = 0

      The time offset relative to the previous object (in milliseconds).

    返回 TimeLine

    An instance of TimeLine.

    Controls an object to move to a target position.

    控制一个对象,从当前位置移动到目标位置。