检测用户的手势,例如滑动

发布于 2024-10-15 23:21:30 字数 100 浏览 0 评论 0原文

我正在使用phonegap 来构建Android 应用程序。

我想检测用户的手势,例如用户的滑动。我可以从 javascript 调用一个事件吗?

谢谢!

I am using phonegap for build android apps.

I would like to detect user's gesture such as a user's swipe. Is there an event i can call from javascript?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-柠檬树下少年和吉他 2024-10-22 23:21:30

我使用名为 xui (homepage) 具有与 jQuery 类似的 API。

您可以将此框架与滑动插件结合使用来访问简单的手势事件。请参阅该存储库下的 swipe/ 目录以获取代码和示例(特别是在 index.html 下)。一个简单的例子:

x$('body').swipe(function(e, data) {
    console.log('type:' + data.type + ' deltaX:' + data.deltaX + ' deltaY:' + data.deltaY + ' distance:' + data.distance + ' delay:' + data.delay+' direction:' + data.direction  );
});

I use a JavaScript framework called xui (homepage) that has a similar API to jQuery.

You can use this framework coupled with the swipe plugin to get access to easy gesture events. See the swipe/ directory under that repository for the code and example (specifically under index.html). A brief example:

x$('body').swipe(function(e, data) {
    console.log('type:' + data.type + ' deltaX:' + data.deltaX + ' deltaY:' + data.deltaY + ' distance:' + data.distance + ' delay:' + data.delay+' direction:' + data.direction  );
});
不弃不离 2024-10-22 23:21:30

jQuery Mobile 还提供了基本的 支持手势(至少点击、长按和左右滑动)。

一些其他插件可以在资源网站上找到。也许插件网站上还有更多。

jQuery Mobile also provides basic support for gestures (at least tap, long tap and swipe left&right).

Some additional plugins can be found on the Resources site. Maybe there are more of them on the plugin site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文