当用户从左或右滑动图像相应更改时如何显示图像库?
这是否可以通过 Phonegap 制作 iPad 应用程序。
任何人都可以给我提示吗?
<script>
$("ul").delegate("li", "swiperight", function() {
// The user has swiped to the right on a list view item. Show an edit menu.
//$(this).find(".menu-edit").show();//change here according to your need.
})
</script>
您可以使用现有的众多 Carousel/Slide 画廊之一。我使用了来自 Bootstrap http://twitter.github.com/bootstrap/javascript.html#carousel的轮播,它很好。
然后,您可以将其与@vikky 提到的 jQuery Mobile 事件结合使用。这提供了 swipeleft 和 swiperight ,您可以使用它们来触发您选择的轮播上的下一个/上一个方法。 http://jquerymobile.com/demos/1.1.0/docs/api/events.html