gpt4 book ai didi

javascript - 电话间隙 : is it possible to detect swipeLeft and SwipeRight touch from Javascript?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:03:39 24 4
gpt4 key购买 nike

我问 Phonegap 应用程序是否能够识别 Javascript 中的 swipeLeft 和 SwipeRight 相关事件。

最佳答案

与普通移动网站相比,Phonegap 不再为您提供触摸事件。 IE。它只是包装一个 UIWebView(在 iOS 上)或其他平台上的任何等效物。

移动浏览器中的触摸事件包括touchstarttouchendtouchmove

没有任何花哨的滑动事件、双击事件或任何类似在移动浏览器中 native 实现的事件。

但是您可以通过结合使用 javascript 和常用的 touchstarttouchend 事件等来模拟那些更复杂的事件。

幸运的是,您无需费心自己编写这些事件,因为几乎每个移动框架都已为您完成了这些工作。其他人提到了一些处理触摸事件的库。

我个人倾向于使用 jQuery Mobile,它具有 swipeleftswiperight 事件以及其他事件。

http://jquerymobile.com/demos/1.2.0/docs/api/events.html

如果您不想的话,您甚至不必使用完整的 jQuery Mobile 框架。如果需要,您可以只包含他们的触摸事件处理程序。

关于javascript - 电话间隙 : is it possible to detect swipeLeft and SwipeRight touch from Javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13701026/

24 4 0
文章推荐: javascript - 未捕获的类型错误 : Object # has no method 'exec' at file:///android_asset/www/index. html