pub fn ontouchstart<__Marker>( _f: impl SuperInto<Callback<Event<TouchData>>, __Marker> ) -> Attribute
The touchstart event fires when the user starts touching an element.
touchstart
Event Data: TouchData
TouchData
fn app() -> Element { rsx!( rect { width: "100", height: "100", background: "red", ontouchstart: |_| println!("Started touching!") } ) }