5 releases (breaking)

0.5.0 Mar 12, 2024
0.4.0 Nov 10, 2023
0.3.0 Oct 12, 2023
0.2.0 Jul 21, 2023
0.1.0 Jun 29, 2023

#4 in #signals

Download history 2/week @ 2024-02-19 17/week @ 2024-02-26 138/week @ 2024-03-11 1/week @ 2024-03-18 36/week @ 2024-04-01 16/week @ 2024-04-08

52 downloads per month

WTFPL license

32KB
545 lines

Docs | Demo

Create derived signals that are animated versions of the original signal

use leptos::*;
use leptos_animation::*;

#[component]
pub fn Counter() -> impl IntoView {
    AnimationContext::provide();

    let (value, set_value) = create_signal(0.0);

    let animated_value = create_animated_signal(move || value.get().into(), tween_default);

    let clear = move |_| set_value.set(0.0);
    let decrement = move |_| set_value.update(|value| *value -= 1.0);
    let increment = move |_| set_value.update(|value| *value += 1.0);

    view! {
        <main class="simple">
            <button on:click=clear>"Clear"</button>
            <button on:click=decrement>"-1"</button>
            <button on:click=increment>"+1"</button>
            <div>"Value: " {value} <br/> "Animated value: " {animated_value}</div>
        </main>
    }
}

Features

  • Allows for multiple animations playing simultaneously
  • Efficiently calls window.request_animation_frame(): only when there are animations playing and only once per frame even if there are multiple animated signals running.
  • Allows for custom durations, easing functions, target updates and tween methods. Can be made to work for any type.
  • Animated signals are all updated simultaneously per frame. Effects that use multiple animated signals are called only once per frame.

Dependencies

~20–32MB
~524K SLoC