javascript - how can i stop scrolling when in the process of a swipe using hammer js? -


i'm using hammerjs allow horizontal swiping through images in gallery , there way me stop vertical scrolling while user swiping horizontally?

you can add drag handler drag_lock_to_axis option set true - see inline documention in hammer.js drag source code.

this should keep drag gesture causing vertical scrolling in swipe area. note option cause slight lag in vertical scrolling tries determine direction of drag. can use drag_block_vertical prevent vertical scrolling in area though not desirable.


Comments