3D FlipBook - How to pre-load all pages

s***e@gmail.com
2020-12-23
2020-12-24

I'm reposting a question another user had. Hi! Is it possible to render all the pages together at the beginning, so you don't have to wait the upload between one page and another? Thanks for your help! I would like to have an incremental page-loader show up in the beginning and have the user wait until all of the pages are loaded before being allowed to click into the book.

Replies

a***r@3dflipbook.net
2020-12-24
2020-12-24

Set

jQuery('body').FlipBook({
...
        propertiesCallback: function(props) {
          props.cachedPages = 100;
          props.preloadPages = 100;
          return props;
        },
        controlsProps: {
          autoResolution: {
            enabled: false
          }
        },
});
Log In to leave a comment