I'm looking at doing a project that would target Internet Explorer 10 using a touch screen. I don't currently have a touch screen handy, but need to know if Internet Explorer 10 does or will support DOM touch events.
相关问题
- Stop child process when parent process stops
- Fire resize event once not based on timing
- Replace image attributes for lazyload plugin on im
- DOMContentLoaded not firing after navigation but f
- is it normal for image inputs to be omitted from t
相关文章
- What does it means in C# : using -= operator by ev
- How are custom broadcast events implemented in Jav
- DOM penalty of using html attributes
- Programming a touch screen application with SWING
- How to create an SVG Matrix without an SVG element
- How many pixels are scrolled on a website with a m
- Difference Between RoutedEventHandler and EventHan
- Append new attribute with setAttribute()?
Update: Touch Events are in development in Internet Explorer.
While IE10 will not support the touchstart and touchend type of events, it will support an arguably superior model consisting of Pointers. These generic pointers capture input from pens, mice, and fingers. A great primer was given in the post Touch Input for IE10 and Metro style Apps, dated Sept, 2011.
You should be able to get the older touch model to work well with the MSPointer model with just abit of feature-detection and clever-scripting:
More on Pointer and Gesture events can be found here: http://msdn.microsoft.com/en-US/library/ie/hh673557.aspx
Important Developments
It appears IE 10 doesn't support the 'touchstart' family of events used by iOS and other mobile browsers. IE 10 does however support multi-touch events using their own 'MSPointer' events. See http://msdn.microsoft.com/en-us/ie/hh272903#_DOMTouch for details and example sites like http://ie.microsoft.com/testdrive/Graphics/TouchEffects.