我搞亂TouchSwipe jQuery插件。通過向左滑動(上一篇文章)和右側(下一篇文章),我成功添加了一種導航。如果我單獨嘗試使用我的代碼片段,它會起作用,當我把它放在我的博客頁面上時,與其他jQuery代碼一起,無法工作......我沒有特定的錯誤。我的第一個嘗試之一是把jQuery.noConflict,但它不起作用。我不明白我卡在哪裏 有什麼幫助嗎? 這是我的代碼做了TouchSwipe jQuery插件導航
<script>
$(function() {
//Enable swiping...
$("#test").swipe({
//Generic swipe handler for all directions
swipeLeft: function(event, direction, distance, duration, fingerCount) {
window.location.href = "http://stackoverflow.com";
},
swipeRight: function(event, direction, distance, duration, fingerCount) {
window.location.href = "http://google.com";
},
threshold: 0
});
});
</script>
兄弟你能告訴我如何在我的網頁上安裝這個插件。我沒有找到任何與它有關的文檔 – Vikram