https://github.com/RaffaeleMorganti/pdf-viewer
PDFjs with flipbook integration (using turnjs4)
https://github.com/RaffaeleMorganti/pdf-viewer
flipbook pdf pdf-flipbook pdf-reader pdf-viewer pdfjs turnjs
Last synced: 3 months ago
JSON representation
PDFjs with flipbook integration (using turnjs4)
- Host: GitHub
- URL: https://github.com/RaffaeleMorganti/pdf-viewer
- Owner: RaffaeleMorganti
- License: mit
- Created: 2018-09-28T16:52:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-20T18:05:50.000Z (about 3 years ago)
- Last Synced: 2024-12-02T15:47:00.000Z (10 months ago)
- Topics: flipbook, pdf, pdf-flipbook, pdf-reader, pdf-viewer, pdfjs, turnjs
- Language: JavaScript
- Homepage: https://raffaelemorganti.github.io/pdf-viewer
- Size: 3.92 MB
- Stars: 177
- Watchers: 2
- Forks: 76
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PDF Viewer
PDF viewer with flip-book interface integration to allow read files flipping pages like a book.## Info
This is a web viewer written in javascript with no external dependencies. It works with almost every browser.Try it now [HERE](https://raffaelemorganti.github.io/pdf-viewer/)
## Requirements
Despite no external dependencies in order to build this project some external script are included:* jQuery 3.4.1 downloaded [here](https://jquery.com/download/).
* PDF.js 2.1.266 downloaded [here](https://mozilla.github.io/pdf.js/getting_started/#download).
* turn.js 4.1.0 downloaded [here](http://www.turnjs.com/).## Develop
If you want to add features feel free to make a PR.
To help you to understand how it works here a list of modified files in order to accomplish this result:| Type | Path | Files |
| --- | --- | --- |
| JS | ./external/pdfjs/ | viewer.js |
| HTML | ./external/pdfjs/ | index.html |
| ALL | ./pdf-turn/ | ***NEW*** |Any change in files not listed as NEW is marked with a `$FB:` comment. Files listed as NEW are build to accomplish final result.
Other files come directly from specified source without any edit. External libraries files not used were deleted to make the source slimmer and clearer.## Known problems
* __Book Flip__ texts are not included in PDF.js locales, so are not translated to the user language. In order to solve this you should go in _'pdfjs/locale/YOUR_LANG'_ and add to the _'viewer.properties'_ file following lines:
```
book_flip.title = Flip pages like a book
book_flip_label = Flip book
```
* If you find any other bug open a new Issue## License
This project is released under [MIT License](https://github.com/RaffaeleMorganti/pdf-viewer/blob/master/LICENSE) however some code come from external with following licenses:* jQuery released under [MIT License](https://github.com/jquery/jquery/blob/master/LICENSE.txt)
* PDF.js released under [Apache License](https://github.com/mozilla/pdf.js/blob/master/LICENSE)
* turn.js released under [BSD License](https://github.com/blasten/turn.js/blob/master/license.txt)