-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Animation | ||
|
||
Below primitives are available to do basic animation in JavaScript. | ||
|
||
- [`<AfterTimeout>`](./AfterTimeout.md) — renders children after a timeout. | ||
- [`<AfterDraf>`](./AfterDraf.md) — renders children after double `requestAnimationFrame`. | ||
- [`<WhenIdle>`](./WhenIdle.md) — renders children on browser idle time. | ||
- [`<Render>`](./Render.md) — re-renders children on every `requestAnimationFrame`. | ||
- [`<RenderInterval>`](./RenderInterval.md) — re-renders children at a specified frame rate per second. | ||
- [`<Tween>`](./Tween.md) — applies an easing function to animation duration value from `<Render>`. | ||
- [`<Interpolation>`](./Interpolation.md) — interpolates a map of values using a `<Tween>`. |
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
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
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