# 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: 4/10/2025, 9:09:02 PM