animate
Displays all the frames left in this frames iterator, with respect to the delays.
Parameters
An iterator over Frame elements to be displayed.
Throws
if any thread has interrupted the current thread while the current thread is waiting for the frame delays.
Displays all the frames in this sequence, with respect to the delays.
Parameters
A sequence of Frame elements to be displayed.
Displays all the frames in this iterable, with respect to the delays.
Parameters
Iterable of Frame elements to be displayed.
Triggers the animation using a chain of frames, beginning with firstFrame and subsequently obtained through the nextFrame function.
Parameters
The first frame of the animation.
Function that takes the current frame and returns the next frame, or null if the animation is finished.
Triggers the animation sequence consisting of frames that are produced by the nextFrame function.
Parameters
A function that returns the next frame in the animation sequence.
Animates a sequence of frames by displaying them with respect to their delays.
Parameters
The number of frames to animate.
A function that maps an index to a frame. The index represents the position of the frame in the sequence.
Animates a sequence of values by displaying them with specified delay. The first value is displayed without a delay.
Parameters
The delay duration between each frame.
An iterator over the values to be animated.
Throws
if any thread is interrupted while waiting for frame delays.
Animates a sequence of values with a specified delay between each frame. The first value is displayed without a delay.
Parameters
The delay duration between each frame.
The sequence of frames to animate.
Animates a sequence of values with a specified delay between each frame. The first value is displayed without a delay.
Parameters
The delay duration between each frame.
A function that provides the next value in the sequence.
Animates a sequence of values with a specified delay between each frame. The first value is displayed without a delay.
Parameters
The delay duration between each frame.
The initial value of the sequence.
A function that generates the next value based on the current value in the sequence.
The type of the values in the sequence.
Animates an iterable sequence of values, each one (except first) appearing after a specified delay.
Parameters
The time delay to wait before displaying each frame.
The set of elements to display as animation frames.
Animates a sequence of values with a specified delay between each frame. The first value is displayed without a delay.
Parameters
The number of frames to animate.
The delay duration between each frame.
The function that generates the content of each frame based on the frame index.