pub fn onmouseenter<__Marker>(
_f: impl SuperInto<Callback<Event<MouseData>>, __Marker>
) -> Attribute
Expand description
The mouseenter
event fires when the user starts hovering an element.
Event Data: MouseData
§Example
fn app() -> Element {
rsx!(
rect {
width: "100",
height: "100",
background: "red",
onmouseenter: |_| println!("Started hovering!")
}
)
}