jquery.event.swipe icon indicating copy to clipboard operation
jquery.event.swipe copied to clipboard

(left-right)swipe occurs during page scroll (up-down)

Open RowanMamdouh opened this issue 3 years ago • 0 comments

trying to scroll in page on mobile but swipe is triggered i want to stop this i tried this but no thing happened

jQuery.extend(jQuery.event.special.swipe,{ scrollSupressionThreshold: 10, // More than this horizontal displacement, and we will suppress scrolling. // durationThreshold: 1000, // More time than this, and it isn't a swipe. horizontalDistanceThreshold: Math.min(jQuery(document).width() / 2, 160), // Swipe horizontal displacement must be more than this. verticalDistanceThreshold:Math.min(jQuery(document).height() / 2, 160), //jQuery('.second-section').offset().top + jQuery('.second-section').height(), // Swipe vertical displacement must be less than this. });

RowanMamdouh avatar Dec 27 '20 14:12 RowanMamdouh