3D FlipBook - Tilt / bend the book on startup

n***s@myscreenbreak.com
2021-01-02
2021-01-18

I am searching on the docs but I can't find the option.

Is there a way we can bend / tilt the book on startup via javascript command or on the options? This effect is really great and gives a real 3d view of the book, but the user should bend it while keeping right click which is not obvious (it took me 5 minutes to discover it).

Thanx!

Replies

m***d@gmail.com
2021-01-16
2021-01-16

Have you found a way to do it ? I would like to know too.

n***s@myscreenbreak.com
2021-01-16
2021-01-16

No, I have not. :-(

a***r@3dflipbook.net
2021-01-18
2021-01-18

There is not such option out of the box but you can use ready function:

$('body').FlipBook({
...,
ready: function(scene) {
          setTimeout(function() {
            scene.visual.getOrbit().actions.rotate(null, {dx: 0, dy: -100, state: 'move'});
          }, 10);
}
})
Log In to leave a comment