我试图在图片库中刷我的图片。我正在尝试在这个网站上这样做。(http://klaret.dk/)但我的刷卡功能不起作用

时间:2015-05-14 04:57:58

标签: jquery wordpress swipe-gesture

我正在尝试在图片库中刷我的图片。我正在尝试在此网站上执行此操作。(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"); 
            });

        });

1 个答案:

答案 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>
相关问题