Home:ALL Converter>Touch event for mouseover

Touch event for mouseover

Ask Time:2015-06-25T16:17:06         Author:3pic

Json Formatter

In a web application touch-version, I'm converting mouse events to touch events. mousedown=>touchstart, mouseup=>touchend...

I also want to convert mouseover event.

Touch mouseover ? it is ansurd, the touchpad doesnt detect your finger in the air !

Not really, if you swipe your finger over an element, e.g. And you want the element to get bigger... for example.

Is there a touch event for such a behaviour (mouseover for touch) ?

Author:3pic,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/31044812/touch-event-for-mouseover
Mark Veenstra :

\nCurrently, jQuery UI user interface library does not support the use of touch events in their widgets and interactions. This means that the slick UI you designed and tested in your desktop browser will fail on most, if not all, touch-enabled mobile devices, becuase jQuery UI listens to mouse events—mouseover, mousemove and mouseout—not touch events—touchstart, touchmove and touchend.\nThat's where jQuery UI Touch Punch comes in. Touch Punch works by using simulated events to map touch events to their mouse event analogs. Simply include the script on your page and your touch events will be turned into their corresponding mouse events to which jQuery UI will respond as expected.\n\nVisit the website and read the documentation.",
2015-06-25T08:25:37
3pic :

Virtual mouse event by JQuery mobile\nis quite welldone.\nhttps://api.jquerymobile.com/vmouseover/",
2015-06-25T08:56:44
yy