Constructor
new Animator(optionsopt)
- Source:
- See:
Name | Type | Description |
---|---|---|
options ? |
Partial<Options & AnimatorOptions> | animator's options |
Example
const animator = new Animator({
delay: 2,
diretion: "alternate",
duration: 2,
fillMode: "forwards",
iterationCount: 3,
easing: Scene.easing.EASE,
});
Extends
Methods
emit(eventName, paramopt) → {boolean}
- Source:
- Overrides:
Fires an event to call listeners.
Name | Type | Default | Description |
---|---|---|---|
eventName |
string | ... | Event name | |
param ? |
TargetParam<any> | ... |
{}
|
Event parameter |
emit<Name extends keyof Events, Param = Events[Name]>(eventName) → {boolean}
Name | Type | Description |
---|---|---|
eventName |
extends Param ? Name : never |
emit<Name extends keyof Events, Param = Events[Name]>(eventName, param) → {boolean}
Name | Type | Description |
---|---|---|
eventName |
Name | |
param |
TargetParam<Param> |
Example
import EventEmitter from "@scena/event-emitter";
const emitter = new EventEmitter();
emitter.on("a", e => {
});
emitter.emit("a", {
a: 1,
});
Returns:
If false, stop the event.
- Type
- boolean
end() → {Animator}
- Source:
end animator
Returns:
An instance itself.
- Type
- Animator
finish() → {Animator}
- Source:
end animator
Returns:
An instance itself.
- Type
- Animator
getActiveDuration(delayopt) → {number}
- Source:
Get the animator's total duration excluding delay
Name | Type | Description |
---|---|---|
delay ? |
boolean |
Example
animator.getActiveDuration();
Returns:
Total duration excluding delay
- Type
- number
getDelay() → {number}
- Source:
Get a delay for the start of an animation.
Returns:
delay
- Type
- number
getDirection() → {DirectionType}
- Source:
Get whether an animation should be played forwards, backwards or in alternate cycles.
Returns:
direction
- Type
- DirectionType
getDuration() → {number}
- Source:
Get how long an animation should take to complete one cycle.
Returns:
duration
- Type
- number
getEasing() → {EasingType}
- Source:
Get the speed curve of an animation.
Returns:
easing
- Type
- EasingType
getEasingName() → {string}
- Source:
Get the speed curve's name
Returns:
the curve's name.
- Type
- string
getFillMode() → {FillModeType}
- Source:
Get fill mode for the item when the animation is not playing (before it starts, after it ends, or both)
Returns:
fillMode
- Type
- FillModeType
getId() → {number|string}
- Source:
Specifies the unique indicator of the animator
Returns:
the indicator of the item.
- Type
- number | string
getIterationCount() → {IterationCountType}
- Source:
Get the number of times an animation should be played.
Returns:
iterationCount
- Type
- IterationCountType
getIterationTime() → {number}
- Source:
Get the animator's current iteration time
Example
animator.getIterationTime();
Returns:
current iteration time
- Type
- number
getPlaySpeed() → {number}
- Source:
Get the animator's play speed
Returns:
playSpeed
- Type
- number
getPlayState() → {PlayStateType}
- Source:
Get whether the animation is running or paused.
Returns:
playState
- Type
- PlayStateType
getTime() → {number}
- Source:
Get the animator's current time
Example
animator.getTime();
Returns:
current time
- Type
- number
getTotalDuration() → {number}
- Source:
Get the animator's total duration including delay
Example
animator.getTotalDuration();
Returns:
Total duration
- Type
- number
isDelay() → {boolean}
- Source:
Check if the current state of animator is delayed.
Returns:
check delay state
- Type
- boolean
isEnded() → {boolean}
- Source:
Check if the animator has reached the end.
Example
animator.isEnded(); // true or false
Returns:
ended
- Type
- boolean
isPaused() → {boolean}
- Source:
Check if the animator is paused:
Example
animator.isPaused(); // true or false
Returns:
paused
- Type
- boolean
off(eventNameopt, listeneropt) → {this}
- Source:
- Overrides:
Remove listeners registered in the event target.
Name | Type | Description |
---|---|---|
eventName ? |
string | object | ... | Name of the event to be removed |
listener ? |
EventListener<Events[any], this> | ... | listener function of the event to be removed |
off<Name extends keyof Events, Param = Events[Name]>(eventName, listener) → {this}
Name | Type | Description |
---|---|---|
eventName ? |
Name | |
listener ? |
EventListener<Param, this> |
off(events) → {this}
Name | Type | Description |
---|---|---|
events |
EventHash<Events, this> |
Example
import EventEmitter from "@scena/event-emitter";
cosnt emitter = new EventEmitter();
// Remove all listeners.
emitter.off();
// Remove all listeners in "A" event.
emitter.off("a");
// Remove "listener" listener in "a" event.
emitter.off("a", listener);
Returns:
- Type
- this
on(eventName, listeneropt) → {this}
- Source:
- Overrides:
Add a listener to the registered event.
Name | Type | Description |
---|---|---|
eventName |
string | object | ... | Name of the event to be added |
listener ? |
EventListener<Events[any], this> | ... | listener function of the event to be added |
on<Name extends keyof Events, Param = Events[Name]>(eventName, listener) → {this}
Name | Type | Description |
---|---|---|
eventName |
Name | |
listener |
EventListener<Param, this> |
on(events) → {this}
Name | Type | Description |
---|---|---|
events |
EventHash<Events, this> |
Example
import EventEmitter from "@scena/event-emitter";
cosnt emitter = new EventEmitter();
// Add listener in "a" event
emitter.on("a", () => {
});
// Add listeners
emitter.on({
a: () => {},
b: () => {},
});
Returns:
- Type
- this
once<Name extends keyof Events & string, Param = Events[Name]>(eventName, listeneropt) → {Promise<OnEvent<Param, this>>}
- Source:
- Overrides:
Add a disposable listener and Use promise to the registered event.
Name | Type | Description |
---|---|---|
eventName |
Name | Name of the event to be added |
listener ? |
EventListener<Param, this> | disposable listener function of the event to be added |
Example
import EventEmitter from "@scena/event-emitter";
cosnt emitter = new EventEmitter();
// Add a disposable listener in "a" event
emitter.once("a", () => {
});
// Use Promise
emitter.once("a").then(e => {
});
Returns:
- Type
- Promise<OnEvent<Param, this>>
pause() → {Animator}
- Source:
pause animator
Returns:
An instance itself.
- Type
- Animator
play(toTimeopt) → {Animator}
- Source:
play animator
Name | Type | Description |
---|---|---|
toTime ? |
number |
Returns:
An instance itself.
- Type
- Animator
setDelay(delay) → {Animator}
- Source:
Set a delay for the start of an animation.
Name | Type | Description |
---|---|---|
delay |
number | delay |
Returns:
An instance itself.
- Type
- Animator
setDirection(direction) → {Animator}
- Source:
Set whether an animation should be played forwards, backwards or in alternate cycles.
Name | Type | Description |
---|---|---|
direction |
DirectionType | direction |
Returns:
An instance itself.
- Type
- Animator
setDuration(duration) → {Animator}
- Source:
Set how long an animation should take to complete one cycle.
Name | Type | Description |
---|---|---|
duration |
number | duration |
Returns:
An instance itself.
- Type
- Animator
setEasing(curverArray) → {Animator}
- Source:
set animator's easing.
Name | Type | Description |
---|---|---|
curverArray |
string | number[] | EasingFunction | The speed curve of an animation. |
Example
animator.({
delay: 2,
diretion: "alternate",
duration: 2,
fillMode: "forwards",
iterationCount: 3,
easing: Scene.easing.EASE,
});
Returns:
An instance itself.
- Type
- Animator
setFillMode(fillMode) → {Animator}
- Source:
Set fill mode for the item when the animation is not playing (before it starts, after it ends, or both)
Name | Type | Description |
---|---|---|
fillMode |
FillModeType | fillMode |
Returns:
An instance itself.
- Type
- Animator
setId() → {Animator}
- Source:
Specifies the unique indicator of the animator
Type | Description |
---|---|
number | string | String or number of id to be set in the animator |
Returns:
An instance itself.
- Type
- Animator
setIterationCount(iterationCount) → {Animator}
- Source:
Set the number of times an animation should be played.
Name | Type | Description |
---|---|---|
iterationCount |
IterationCountType | iterationCount |
Returns:
An instance itself.
- Type
- Animator
setOptions(optionsopt) → {Animator}
- Source:
- See:
set animator's options.
Name | Type | Default | Description |
---|---|---|---|
options ? |
Partial<AnimatorOptions> |
{}
|
animator's options |
Example
animator.({
delay: 2,
diretion: "alternate",
duration: 2,
fillMode: "forwards",
iterationCount: 3,
easing: Scene.eaasing.EASE,
});
Returns:
An instance itself.
- Type
- Animator
setPlaySpeed(playSpeed) → {Animator}
- Source:
Set the animator's play speed
Name | Type | Description |
---|---|---|
playSpeed |
number | playSpeed |
Returns:
An instance itself.
- Type
- Animator
setPlayState(playState) → {Animator}
- Source:
Set whether the animation is running or paused.
Name | Type | Description |
---|---|---|
playState |
PlayStateType | playState |
Returns:
An instance itself.
- Type
- Animator
setTime(time, isTickopt, isParentopt, execopt) → {Animator}
- Source:
set currentTime
Name | Type | Description |
---|---|---|
time |
Number | String | currentTime |
isTick ? |
boolean | |
isParent ? |
boolean | |
exec ? |
() => void |
Example
animator.setTime("from"); // 0
animator.setTime("to"); // 100%
animator.setTime("50%");
animator.setTime(10);
animator.getTime() // 10
Returns:
An instance itself.
- Type
- Animator
trigger<Name extends keyof Events>(eventName, paramopt) → {boolean}
- Source:
- Overrides:
Fires an event to call listeners.
Name | Type | Default | Description |
---|---|---|---|
eventName |
Name | ... | Event name | |
param ? |
TargetParam<any> | ... |
{}
|
Event parameter |
trigger<Name extends keyof Events, Param = Events[Name]>(eventName) → {boolean}
Name | Type | Description |
---|---|---|
eventName |
extends TargetParam<Param> ? Name : never |
trigger<Name extends keyof Events, Param = Events[Name]>(eventName, param) → {boolean}
Name | Type | Description |
---|---|---|
eventName |
Name | |
param |
TargetParam<Param> |
Example
import EventEmitter from "@scena/event-emitter";
const emitter = new EventEmitter();
emitter.on("a", e => {
});
emitter.emit("a", {
a: 1,
});
Returns:
If false, stop the event.
- Type
- boolean
Events
ended
- Source:
This event is fired when animator is ended.
iteration
- Source:
The event is fired when an iteration of an animation ends.
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
param |
Object | The object of data to be sent to an event.
Properties
|
paused
- Source:
This event is fired when animator is paused.
play
- Source:
This event is fired when play animator.
timeupdate
- Source:
This event is fired when the animator updates the time.
Name | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
param |
Object | The object of data to be sent to an event.
Properties
|