【发布时间】:2011-08-24 16:41:15
【问题描述】:
iPad 中的 Mobile Safari 浏览器提供或检测到哪些触摸事件?
基本上 webkit 提供了什么?
我正在寻找与 Safari 中的 touchesBegan、touchesMoved 等等效的本机应用程序 (IOS SDK)。
【问题讨论】:
标签: javascript html ipad safari mobile-safari
iPad 中的 Mobile Safari 浏览器提供或检测到哪些触摸事件?
基本上 webkit 提供了什么?
我正在寻找与 Safari 中的 touchesBegan、touchesMoved 等等效的本机应用程序 (IOS SDK)。
【问题讨论】:
标签: javascript html ipad safari mobile-safari
【讨论】:
iOS 和 Android 浏览器均支持 touchStart、touchEnd 和 touchMove:http://backtothecode.blogspot.com/2009/10/javascript-touch-and-gesture-events.html
在 iOS 上检测多点触控事件似乎是可能的: http://www.html5rocks.com/mobile/touch.html
如果你更喜欢 jQuery,还有 jQuery mobile:http://jquerymobile.com/demos/1.0a4.1/#docs/api/events.html
【讨论】: