Function freya::elements::onmouseleave

source ·
pub fn onmouseleave<E, T>(
    _f: impl FnMut(Event<MouseData>) -> E + 'static
) -> Attribute
where E: EventReturn<T>,
Expand description

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

Event Data: MouseData

§Example

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