Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 744 Bytes

Animation.md

File metadata and controls

11 lines (9 loc) · 744 Bytes

Animation

Below primitives are available to do basic animation in JavaScript.

  • <AfterTimeout> — renders children after a timeout.
  • <AfterDraf> — renders children after double requestAnimationFrame.
  • <WhenIdle> — renders children on browser idle time.
  • <Render> — re-renders children on every requestAnimationFrame.
  • <RenderInterval> — re-renders children at a specified frame rate per second.
  • <Tween> — applies an easing function to animation duration value from <Render>.
  • <Interpolation> — interpolates a map of values using a <Tween>.