Disable scrolling by touch in pagepiling

1.2k Views Asked by At

I use the pagepiling.js library, how can I disable navigation by touch in the mobile? In the mobile, the slide can be changed with a finger on the screen. How to disable?

1

There are 1 best solutions below

0
On

You can use this: setAllowScrolling(boolean, [directions])

$.fn.pagepiling.setAllowScrolling(false);

For disabling keyboard scrolling:

$.fn.pagepiling.setKeyboardScrolling(false);

For disabling mouse wheel scrolling:

$.fn.pagepiling.setMouseWheelScrolling(false);