dioxus-type-animation 0.1.0

A Dioxus typewriter animation component inspired by react-type-animation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// HTML wrapper element used by [`TypeAnimation`](crate::TypeAnimation).
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum Wrapper {
    P,
    Div,
    #[default]
    Span,
    Strong,
    A,
    H1,
    H2,
    H3,
    H4,
    H5,
    H6,
    B,
}