Function freya::elements::onmouseleave

pub fn onmouseleave<'a>(
    _cx: &'a ScopeState,
    _f: impl FnMut(Event<MouseData>) + 'a
) -> Attribute<'a>
Expand description

The mouseleave event fires when the user stops hovering an element.

Event Data: MouseData

Example

fn app(cx: Scope) -> Element {
    render!(
        rect {
            width: "100",
            height: "100",
            background: "red",
            onmouseleave: |_| println!("Stopped hovering!")
        }
    )
}