本文為大家分享了jquery.touchSwipe左右滑動和垂直滾動條沖突問題的解決方法,具體內容如下
正好需要Html5做一個左右可以切換的功能,但是要保留上下滾動條功能。我在移動端使用的jquery.touchSwipe插件,上網找了好久沒有看到對應的解決方式,只能自己修改了,最後是能用了。
先上個圖:
解決方式是,我把左右滾動的事件添加到了Body上面,而上下活動的使用了DIV的垂直滾動。上代碼:
$("#body").swipe( { fingers:'all', swipeLeft:swipe1, swipeRight:swipe2} ); function swipe1(event, direction, distance, duration, fingerCount) { tab_shipu(-1); //向左滑動你要執行的動作 } function swipe2(event, direction, distance, duration, fingerCount) { tab_shipu(1); //向右滑動你要執行的動作 }
然後上下滾動條我設置div的滾動;
<div id="cook" class="cook"></div> <style> .cook{ overflow: auto; } </style>
設置body和div的默認高度代碼:
$("body").css("height",document.body.scrollHeight); $(".cook").css("height",document.body.scrollHeight-$('#cook').position().top);
以上就是解決左右滑動和垂直滾動條沖突的方法,希望對大家的學習有所幫助。