用锤子重定向滑动



我需要帮助。我在UL中有两个链接。

<ul class="group switcher">
    <li><a href="/" id="next"><i class="fa fa-list-ul" aria-hidden="true"></i></a></li>
    <li><a href="news-table.html" id="previous"><i class="fa fa-th-large" aria-hidden="true"></i></a></li>
</ul>

当我向右滑动#next时,我希望重定向到News-table.html。我使用Hammer.js。谢谢!

var options = { /* your options*/};
$('#next').hammer(options).bind("swiperight", function() {
    var href = $(this).attr('href');
    $(window).location.replace(href);
});

仅通过阅读文档来回答。可能需要在您的代码中进行一些调整...

相关内容

  • 没有找到相关文章

最新更新