3D FlipBook - I want to disable smart pan but it always appears enabled, what do I need to do?

c***x@gmail.com
2022-07-25
2022-11-30

Before buying the paid version I need to know if it is possible.

this is my code:

controlsProps: {
        actions: {
          cmdSmartPan: false,
          cmdSinglePage :{
            activeForMobile: true
          },
        },
        scale: {
          levels: 7,
          max: 7
        }
      }

also try this other code:

 controlsProps: {
        actions: {
          cmdSmartPan: {
            active: false
          },
          cmdSinglePage :{
            activeForMobile: true
          },
        },
        scale: {
          levels: 7,
          max: 7
        }
      }

Can you help me?

Replies

a***r@3dflipbook.net
2022-11-23
2022-11-23

The second code looks correct. You need to use it when creating a book:

jQuery ('body').FlipBook({controlsProps:{...},...})
Log In to leave a comment