10

我正在为 android 平台制作 phonegap 应用程序。在这个应用程序中,我想在多个 html 页面中滑动导航。请告诉我我该怎么做。要么是在单个 html 页面中完成,要么我必须为此滑动导航创建多个 html 页面。

提前致谢。普雷特

4

1 回答 1

8

如果您使用的是 jquery mobile,那么很容易做到这一点,因为 jquery 支持 swipe、swipeleft 和 swiperight 触摸事件。

刷卡

滑动事件,当用户垂直(20 或更少像素)或水平(30 或更多像素)滑动时触发

向左滑动

向左滑动,当用户向左滑动 30 或更多像素时触发

向右滑动

向右滑动,当用户向右滑动 30 或更多像素时触发

用这个:

<script>
$("ul").delegate("li", "swipe", function() {
 // The user has swiped to the right on a list view item. Show an edit menu.
$(this).find(".menu-edit").show();
})
</script>
于 2012-05-22T12:18:24.103 回答