3D FlipBook - Single page navigation jump 2 pages

w***r@espero.it
2021-05-06
2021-05-11

Hi, I have a FlipBook in single page mode (Pro version). When I navigate by the arrows it goes correctly to the next page. When I use active corners it goes forward two pages! How can I solve the problem?

Thanks! Claudio

Replies

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

Hi, active corners are designed for turning pages. You can disable them.

w***r@espero.it
2021-05-12
2021-05-12

Hi, thanks! What is the right command in js? Because in the documentation I not find nothing if search for "active corners" or similar... Best, Claudio

a***r@3dflipbook.net
2021-05-15
2021-05-15
$('#container').FlipBook({
...,
  propertiesCallback: function(props) {
    props.interactiveCorners = false;
    return props;
  }
});
Log In to leave a comment