Update index.html
Browse files- index.html +20 -0
index.html
CHANGED
@@ -16,7 +16,27 @@
|
|
16 |
}
|
17 |
|
18 |
</style>
|
|
|
19 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
toastr.options.progressBar = true;
|
21 |
|
22 |
const url = "https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf";
|
|
|
16 |
}
|
17 |
|
18 |
</style>
|
19 |
+
|
20 |
<script>
|
21 |
+
|
22 |
+
.container.mx-auto.flex.flex-col.h-screen
|
23 |
+
.flex.justify-between.my-4
|
24 |
+
h1.font-bold PDF Viewer
|
25 |
+
nav.nav.justify-content-end
|
26 |
+
a#prev.border.rounded.py-2.px-4.bg-blue-500(href="#") prev
|
27 |
+
a#next.border.rounded.py-2.px-4.bg-blue-500(href="#") next
|
28 |
+
a#download.border.rounded.py-2.px-4.bg-blue-500(href="#") download
|
29 |
+
div.flex-grow
|
30 |
+
canvas#pdfviewer
|
31 |
+
p Loading...
|
32 |
+
.pages.text-center.my-4
|
33 |
+
span.mr-2 Page
|
34 |
+
span#currentPage 0
|
35 |
+
span.mx-1 /
|
36 |
+
span#totalPages 0
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
toastr.options.progressBar = true;
|
41 |
|
42 |
const url = "https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf";
|