Skip to content

Instantly share code, notes, and snippets.

@annervisser
Created April 4, 2024 12:38
Show Gist options
  • Save annervisser/a0b1c5d42ce23947d023c796c1124911 to your computer and use it in GitHub Desktop.
Save annervisser/a0b1c5d42ce23947d023c796c1124911 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PDF Viewer</title>
<style>
html,body {
margin: 0;
padding: 0;
}
#viewerContainer {
overflow: auto;
position: absolute;
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/web/pdf_viewer.css"
>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/pdf.min.mjs"
type="module"
></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/web/pdf_viewer.mjs"
type="module"
></script>
</head>
<body>
<div id="viewerContainer">
<div id="viewer"></div>
</div>
<script type="module">
pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdn.jsdelivr.net/npm/[email protected]/build/pdf.worker.min.mjs';
const DEFAULT_URL = 'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf';
const pdfViewer = new pdfjsViewer.PDFViewer({
container: document.getElementById("viewerContainer"),
eventBus: new pdfjsViewer.EventBus(),
});
pdfViewer.eventBus.on("pagesinit", () => pdfViewer.currentScaleValue = "page-width");
// Loading document.
const pdfDocument = await pdfjsLib.getDocument({
url: DEFAULT_URL,
cMapUrl: "https://cdn.jsdelivr.net/npm/[email protected]/cmaps/",
cMapPacked: true,
enableXfa: true,
}).promise;
pdfViewer.setDocument(pdfDocument);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment