3D FlipBook - Disable sheet corner because HTML Pages

f***r@pixogram.com
2021-09-22
2021-09-23

Hi, I use HTML pages and so I have to deactivate the sheet corner, because no hover effekt in HTML is possible in this region.

I read that should be possible in the source code. Please tell me in which file I have to deactivate this.

I just bought the software.

Replies

f***r@pixogram.com
2021-09-23
2021-09-23

Sorry, to late seen:

$('#container').FlipBook({ pdf: "path to pdf", ready: function(scene) { scene.book.enableMouse(false); } });

a***r@3dflipbook.net
2021-09-23
2021-09-23

no problem) you can also

$('#container').FlipBook({
  propertiesCallback: function(props) {
    props.interactiveCorners = false;
    return props;
  }
});
Log In to leave a comment