Last active
November 16, 2019 16:29
-
-
Save Jagathishrex/374736c44b1fd614fcfe18c76ea71cb5 to your computer and use it in GitHub Desktop.
Pdf viewer in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id="pdf_canvas"></canvas> | |
<div class="container"> | |
<button id="prev_page">Previos Page</button> | |
<button id="next_page">next Page</button> | |
<span id="current_page_num"></span> | |
of | |
<span id="total_page_num"></span> | |
<input type="text" id="page_num"> | |
<button id="go_to_page">Go To Page</button> | |
</div> | |
<!-- Replace pdf.js with downloaded pdf.js file location--> | |
<script src="pdf.js" charset="utf-8"></script> | |
<script src="script.js" charset="utf-8"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment