# animationFrames()

animationFrames() // -> Observable<Number>

Create an Observable over the time in milliseconds since .subscribe() was called on every animation frame.

Examples

animationFrames().subscribe(time => {
  // time starts at 0
  // runs every animation frame
})
Last Updated: 9/14/2021, 5:49:55 PM