I'm using the YUI slider that operates with mouse move events. I want to make it respond to touchmove events (iPhone and Android). How can I produce a mouse move event when a touchmove event occurs? I'm hoping that just by adding some script at the top that touchmove events will get mapped to the mouse move events and I won't have to change anything with the slider.
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- void before promise syntax
- Keeping track of variable instances
- Can php detect if javascript is on or not?
I am sure this is what you want:
I've captured the touch events and then manually fired my own mouse events to match. Although the code isn't particularly general purpose as is, it should be trivial to adapt to most existing drag and drop libraries, and probably most existing mouse event code. Hopefully this idea will come in handy to people developing web applications for the iPhone.
Update:
In posting this, I noticed that calling
preventDefault
on all touch events will prevent links from working properly. The main reason to callpreventDefault
at all is to stop the phone from scrolling, and you can do that by calling it only on thetouchmove
callback. The only downside to doing it this way is that the iPhone will sometimes display its hover popup over the drag origin. If I discover a way to prevent that, I'll update this post.Second Update:
I've found the CSS property to turn off the callout:
-webkit-touch-callout
.Along the lines of @Mickey Shine's answer, Touch Punch provides mapping of touch events to click events. It's built to put this support into jQuery UI, but the code is informative.
I finally found a way to get this working using Mickey's solution but instead of his init function. Use the init function here.
If you see '
filter_div
' is the chart area where we have the chart range filter and only in that area do we want to rewrite our touch controls!Thank you Mickey. It was a great solution.
For future users, who comeback here the following code might be used :
And then in the events use like following :
For making @Mickey's code work on Edge and internet explorer, add the following lines in .css of the element where you want the simulation to happen:
These lines prevent the default touch for edge and IE. But if you add it to the wrong element, then it also disables scroll (which happens by default on edge and IE on touch devices).