pub fn onmouseenter<E, T>( _f: impl FnMut(Event<MouseData>) -> E + 'static ) -> Attributewhere E: EventReturn<T>,
The mouseenter event fires when the user starts hovering an element.
mouseenter
Event Data: MouseData
MouseData
fn app() -> Element { rsx!( rect { width: "100", height: "100", background: "red", onmouseenter: |_| println!("Started hovering!") } ) }