-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Pdf viewer</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./dist/app.css" />
<link
rel="stylesheet"
href="https://console.invensislearning.com/css/app.css"
/>
</head>
<body>
<div class="container">
<div
id="pdf-viewer"
data-pdf="https://alpha.invensislearning.com/storage/brochures/agile-scrum-foundation-certification-training-brochure-usa.pdf"
></div>
</div>
<script src="./dist/app.js"></script>
<script>
function onNextPageChange(previous, current, total) {
console.log(previous);
console.log(current);
}
</script>
</body>
</html>