Function freya::elements::onmouseover

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

The mouseover event will fire when the user moves the mouse over an element.

Event Data: MouseData

Example:

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