-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreader.html
More file actions
79 lines (76 loc) · 3.2 KB
/
reader.html
File metadata and controls
79 lines (76 loc) · 3.2 KB
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
<!DOCTYPE html>
<html>
<head>
<title>PDF Reader</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta name="description" content="PDF Reader" />
<link rel="stylesheet" type="text/css" href="./css/roboto.css" />
<link rel="stylesheet" type="text/css" href="./css/Material-Design-Iconic-Font.css" />
<link rel="stylesheet" type="text/css" href="./css/owl.css" />
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<script src="./js/polyfills.js"></script>
<script src="./js/utils.js"></script>
<script src="./js/owl.js"></script>
<script src="./js/pdf.js"></script>
<script src="./js/main.js"></script>
</head>
<body>
<div class='hidden'>
<ul id='zoom-select' class='list'>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Очень длинная строка опции однако</li>
<li class='selected'>Строка опции</li>
<li>Строка опции</li>
</ul>
<ul id='bookmark-select' class='list'>
<li>Очень длинная строка опции однако</li>
<li>Строка опции</li>
<li class='selected'>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
<li>Строка опции</li>
</ul>
</div>
<div class='toolbar'>
<div class='page'>
<div class='button page-prev group-right'><span class='icon md-arrow-back'></span></div><!--
--><div class='button page-next group-left'><span class='icon md-arrow-forward'></span></div><!--
--><span> Страница: </span><!--
--><input type='text' class='input page-current'/><!--
--><span> из </span><!--
--><span class='page-total'></span>
</div>
<div class='bookmark'>
<div class='button bookmark-toggle group-right'><span class='icon md-bookmark-outline'></span></div><!--
--><div class='button select-menu-button group-left tip' tip-content='#bookmark-select'>Закладки </div>
</div>
<div class='zoom'>
<div class='button zoom-plus group-right'><span class='icon md-add'></span></div><!--
--><div class='button zoom-minus group-left group-right'><span class='icon md-remove'></span></div><!--
--><div class='button zoom-select select-menu-button group-left group-right tip' tip-content='#zoom-select'>Автоматически </div><!--
--><div class='button zoom-fullscreen group-left'><span class='icon md-fullscreen'></span></div>
</div>
<div class='clear'></div>
</div>
<div class='content'>
</div>
<script>
/*new owl({content:'Тест'});
new owl({content:'Тест', type: 'error'});*/
</script>
</body>
</html>