使用bxlslider进行以下设置的一个网站
var aboutSectionSlider = jQuery('.aboutSectionMainSliderInner').bxSlider({
mode: 'fade',
controls:false,
touchEnabled : true,
captions: false,
pager:'true',
speed: 600,
pagerSelector : jQuery('.aboutSliderPager'),
onSliderLoad: function(currentIndex){
jQuery(".aboutSectionSlider").css("visibility", "visible");
jQuery('.aboutSectionMainSliderInner').children().eq(currentIndex).addClass('activeAboutSlide firstAboutSlide');
},
preventDefaultSwipeX: true,
preventDefaultSwipeY: false
});
根据文档preventDefaultSwipeX:true应该禁用水平滑动但是当前使用apple ipad进行测试时,垂直滑动和水平滑动都在工作。但是滑动不能正常工作,就像我垂直滑动(从上到下)向下滑动而不是下一个滑动。
知道如何解决这个问题吗?