Crate leptos_animation
source ·Modules§
Structs§
- The
AnimationContext
handles updating all animated values and calls towindow.request_animation_frame()
. It is required to provide one in a parent context before callingcreate_animated_signal()
- An
AnimationTarget
is a target value for the animation system to ease towards to along with details about the animation such as its duration, easing method and how to deal with previous animations.
Enums§
- The
AnimationMode
specifies how to handle new animation target values with respect to currently running animations
Functions§
- Create a derived signal that animated the value of the input signals. Takes as input a reactive source callback function and a tween function.
- Default linear tween between any type of number
Type Aliases§
- An easing function is one that takes a value between 0.0 - 1.0 and maps it to another value between 0.0 and 1.0 See
https://easings.net
for a list of implemented functions