iberezansky / flip-book-jquery

3D FlipBook allows to browse images, PDFs or HTMLs as a flipping book. It helps to attract user attention and make more impression on him.
http://3dflipbook.net/
GNU General Public License v2.0
224 stars 86 forks source link

use dom instead of html source file? #4

Open dd1994 opened 6 years ago

dd1994 commented 6 years ago

in the examle

function preview(n) {
  return {
    type: 'html',
    src: 'books/html/preview/'+(n%3+1)+'.html',
    interactive: true
  };
}

can use dom intead of html source file?

like:

function preview(n) {
  return {
    type: 'html',
    src: $('.example')[0],
    interactive: true
  };
}
dd1994 commented 6 years ago

or a html string