-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (54 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF Viewer in jQuery</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/print-js/1.6.0/print.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<ul class="navigation">
<li class="navigation__item">
<a href="#" class="previous round" id="prev_page"
><i class="fas fa-arrow-left"></i
></a>
<input type="number" value="1" id="current_page" />
<a href="#" class="next round" id="next_page"
><i class="fas fa-arrow-right"></i
></a>
Page <span id="page_num">1</span> of <span id="page_count">1</span>
</li>
<li class="navigation__item">
<button class="zoom" id="zoom_in">
<i class="fas fa-search-plus"></i>
</button>
<button class="zoom" id="zoom_out">
<i class="fas fa-search-minus"></i>
</button>
</li>
<li class="navigation__item">
<button class="print-button">
<i class="fa-solid fa-print"></i>
</button>
</li>
</ul>
</header>
<canvas id="canvas" class="canvas__container"></canvas>
<script type="module" src="index.js"></script>
</body>
</html>