-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (68 loc) · 2.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>pdfV demo</title>
<!-- The css of the PdfV -->
<link rel="stylesheet" href="./css/style.min.css">
<!-- You can remove that -->
<style media="screen">
body {
background-color: #424242;
}
h1 {
color: white;
text-align: center;
font-family: Helvetica, Arial, Sans-Serif;
}
#pdfViewer {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
}
.button {
width: 100%;
text-align: center;
}
.button>a {
display: inline-block;
margin: 20px;
background-color: #e74c3c;
text-decoration: none;
color: white;
padding: 10px;
font-size: 20px;
border-radius: 5px;
font-family: Helvetica, Arial, Sans-Serif;
transition: all .5s;
}
.button>a:hover {
background-color: #c0392b;
}
</style>
</head>
<body>
<h1>pdfV Demo</h1>
<div id="pdfViewer">
</div>
<div id="pdfViewer2">
</div>
<!-- You can remove that -->
<div class="button">
<a href="https://github.com/wladi0097/pdfV">Code and Download</a>
</div>
<!-- The pdfV file -->
<script src="./build/pdfV.js"></script>
<!-- FOR DEBUGGING -->
<!-- <script src="./js/pdf.js" charset="utf-8"></script>
<script src="./js/pdfV.js" charset="utf-8"></script>
<script src="./js/_animation.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement_builder.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement_events.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement_navigator.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement_variables.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement_validation.js" charset="utf-8"></script>
<script src="./js/_pdfViewerElement.js" charset="utf-8"></script> -->
<!-- Your default .js file -->
<script src="./demo/main.js"></script>
</body>
</html>