12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html dir="ltr" mozdisallowselectionprint>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="google" content="notranslate">
- <title>PDF.js page viewer using built components</title>
- <style>
- body {
- background-color: #808080;
- margin: 0;
- padding: 0;
- }
- </style>
- <link rel="stylesheet" href="../../node_modules/pdfjs-dist/web/pdf_viewer.css">
- <script src="../../node_modules/pdfjs-dist/build/pdf.js"></script>
- <script src="../../node_modules/pdfjs-dist/web/pdf_viewer.js"></script>
- </head>
- <body tabindex="1">
- <div id="pageContainer" class="pdfViewer singlePageView"></div>
- <script src="pageviewer.js"></script>
- </body>
- </html>
|