Open grocc opened 9 years ago
I'm experiencing the same problem. Full-width images on mobile do not allow for a vertical swipe to scroll the page. I've tried adding the "autoscroll" option, but that didn't fix the issue. If anyone has any ideas as to how to fix this issue, please update the project accordingly. Thanks a bunch!!! -rob
Hello everybody, i have a slider that take the full width of the page. If i set swipe with onTouch true the slider work fine, but i can't scroll down or up the page if i touch the slider.
I also try to react to the swipe by myself $(".carusel").swipe({ excludedElements: "button, input, select, textarea, .noSwipe", swipeLeft: function() { $('.carusel').trigger('next', 4); }, swipeRight: function() { $('.carusel').trigger('prev', 4); }, });
but giving the noSwipe class to the slider or the slide obviously the swipe is not more triggered.
How can i fix it? I need both the swipe on the slider (left, right) and the normal scrolling of the page to navigate in the other content.
Thanks