我正在尝试在图片库中刷我的图片。我正在尝试在此网站上执行此操作。(http://klaret.dk/)但我的滑动功能无效。这是我正在使用的代码。我添加了jquery库以及jquery mobile ui库。仍然没有用
$(document).on("pagecreate", function(){
alert("here");
//alert($('.fs_gallery_wrapper').html())
$(".fs_slide").on("swipe", function() {
alert("hello");
});
});
答案 0 :(得分:1)
我是这样做的并且有效。真棒。
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript">
$(document).on("swipeleft",'.fs_gallery_wrapper', function(){
//alert("here");
nextSlide();
});
$(document).on("swiperight",'.fs_gallery_wrapper', function(){
//alert("here");
prevSlide();
});
</script>