This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A timeline with internal clock to schedule simple animations. | |
* @example | |
* // create timeline | |
* let timeline = new Timeline(); | |
* | |
* // schedule a function to be run in two seconds time | |
* timeline.addKeyframe(2, () => { | |
* console.log('Hello in two seconds time'); | |
* }); |