3D FlipBook - Scrolling freeze

f***5@gmail.com
2021-04-04
2021-04-06

After embedding the plugin, we've noticed that scrolling freezes when the pdf is in view. The issue is even more clear when using it on mobile devices. We've tried changing the boolean touchCmdSwipe with no luck at all. How to solve it?

Replies

a***r@3dflipbook.net
2021-04-05
2021-04-05

Could you write a link to your page?

f***5@gmail.com
2021-04-05
2021-04-05

Unfortunately I don't have the authority to share it. Is there any other way to solve it?

a***r@3dflipbook.net
2021-04-05
2021-04-05

well you need to disable touchCmdSwipe and mouseCmdWheelZoom:

jQuery('body').FlipBook({
controlsProps: {
    "actions": {
        "mouseCmdWheelZoom": {
            "enabled": false
        },
        "touchCmdSwipe": {
            "enabled": false
        }
    }
},
...
});
Log In to leave a comment