Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Last active November 16, 2019 16:29
Show Gist options
  • Save Jagathishrex/374736c44b1fd614fcfe18c76ea71cb5 to your computer and use it in GitHub Desktop.
Save Jagathishrex/374736c44b1fd614fcfe18c76ea71cb5 to your computer and use it in GitHub Desktop.
Pdf viewer in Javascript
<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