Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery Flipbook to upload PDFs

Iam using Builtbywill Flipbook.

<div id="mybook">
    <div title="This is a page title"> 
       <img src="image1.jpg"/>
    </div>
    <div> 
       <img src="image2.jpg"/>
    </div>
    <div title="This is another title"> 
        <img src="image3.jpg"/>
    </div>
    <div> 
      <img src="image4.jpg"/>
    </div>       
    <div> 
       <img src="image5.jpg"/>
    </div>
</div>

JQuery

  $(function() {
    $('#mybook').booklet({
        menu: '#custom-menu',
        pageSelector: true
    });
});

Instead of using Images, is it possible to directly upload the PDF to the Flipbook using Jquery or some how?Please help me. I'm using http://builtbywill.com/code/booklet plugin.

like image 452
Pearl Avatar asked Oct 28 '13 10:10

Pearl


1 Answers

Why not try

Take a look here, pdfjs + turnjs: http://www.maxims6n.bget.ru/pdf_books/demo_21.html

turn.js :http://www.turnjs.com/

pdf.js : http://mozilla.github.io/pdf.js/

jsPDF : http://parall.ax/products/jspdf

like image 120
rajesh kakawat Avatar answered Sep 22 '22 03:09

rajesh kakawat