3D FlipBook - Flip to first page

l***m@gmail.com
2021-01-29
2021-02-04

I'm using the WP plugin Pro, when turning to the last page can you provide the script to turn to the book first page? Ty

Replies

a***r@3dflipbook.net
2021-02-04
2021-02-04

Use ready function:

 function ready(scene) {
  scene.ctrl.addEventListener('endFlip', function(e) { 
    if(scene.ctrl.getPageForGUI()==scene.book.getPages()) {
      scene.ctrl.goToPage(0);
    }
  });
} ready;
Log In to leave a comment