3D FlipBook - Links in bottom right area of the sheet

i***i@gmail.com
2023-01-08
2023-01-11

Hi, I'm using 3dflipbook jQuery plugin. During a website development I've found a customer pdf file with html links in bottom right areas of page. That areas are unclickablo because of "flexibility of sheet" so I've tried to change cornerDeviation, flexibleCorner, shape parameters values to solve the problem. Unfortunally it doesn't help, so what can I do to let users click those html links?

Thanks, Andrea

Replies

a***r@3dflipbook.net
2023-01-09
2023-01-09

hi, you can simply disable interactive corners:

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