3D FlipBook - Is it possible to open the catalog in the slanted view?

j***e@gmx.de
2022-08-29
2022-11-30
  1. Is it possible to open the catalog in the slanted view?
  2. Can you automatically turn the page every x seconds

Thank you for your reply

Replies

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

You can use ready function for this https://3dflipbook.net/documentation#general-approach :

        ready(scene) {
          setTimeout(function() {
            scene.visual.getOrbit().actions.rotate(null, {dx: 0, dy: -100, state: 'move'});
          }, 10);
          var interval  = setInterval(function() {
            if(scene.ctrl.getPage()<scene.book.getPages()-1) {
              scene.ctrl.cmdForward();
            }
            else {
              clearInterval(interval);
            }

          }, 1000);
        },
Log In to leave a comment