jgesture 在phonegap 中不起作用

发布于 2025-01-01 12:36:53 字数 281 浏览 1 评论 0原文

我已经包含了 jgesture.min.js 但滑动功能不起作用,谁能告诉我如何解决问题

 <script type="text/javascript" charset="utf-8" src="jquery.mobile/jgestures.min.js"></script>



this.container.bind("swiperight", function(event, body) {
      alert("you swiped!");
    });

I have included jgesture.min.js but swipe functon is not working can aybody tell how to solve problem

 <script type="text/javascript" charset="utf-8" src="jquery.mobile/jgestures.min.js"></script>



this.container.bind("swiperight", function(event, body) {
      alert("you swiped!");
    });

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

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

发布评论

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

评论(2

小清晰的声音 2025-01-08 12:36:53

这是插件设计的问题。

仅当滑动在 Y 轴上移动时,swiperight 才会触发。

请参阅:只有 swipeone 可以与 jGestures 配合使用

It's a problem with the design of the plugin.

swiperight will only fire if the swipe has zero movement on the Y axis.

Please see: Only swipeone is working with jGestures

¢蛋碎的人ぎ生 2025-01-08 12:36:53

诀窍是:

… .bind('swipeone swiperight', … 

您必须将其绑定到两个事件。仅向右滑动是行不通的。我花了 3 个小时才弄清楚:D

最好,
里科

The trick is:

… .bind('swipeone swiperight', … 

You have to bind it to both events. only swiperight won't work. took me 3 hrs to figure that out :D

Best,
Rico

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