This repository was archived by the owner on Aug 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreader.html
More file actions
114 lines (109 loc) · 4.22 KB
/
reader.html
File metadata and controls
114 lines (109 loc) · 4.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self';connect-src *;">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self';connect-src *;"> -->
<title>Manga Reader</title>
<link rel="stylesheet" href="./resources/reader.css">
<link rel="stylesheet" href="./resources/fonts/remixicon/remixicon.css">
</head>
<body class=''>
<!-- TITLE -->
<div class="side-bar">
<img class="logo" src="resources/img/svg/icon.svg"/>
<div class="spacer"></div>
<button id="editLayout"><span class="ri-layout-5-line"></span>Edit Layout</button>
<button id="options"><span class="ri-settings-5-fill"></span>Options</button>
</div>
<button class="ri-arrow-go-back-fill top-button" id="show-main"></button>
<div class="content">
<!-- IMAGE HANDLER -->
<div class="image-handler">
</div>
<div class="loading-wrapper">
<div class="loader"></div>
</div>
<!-- FOR CHECKING CURRENT IMG -->
<div class="pointer"></div>
<!-- DRAGGABLES -->
<div class="draggable">
<div class="draggable-content" id="chapterNum">
<span class="label">Chapter: </span>
<div class="dropdown">
<span class="selected"></span>
<span class="ri-arrow-down-s-fill arrow"></span>
<div class="options">
</div>
</div>
<span class="sep">/</span>
<span class="text">226</span>
</div>
</div>
<div class="draggable">
<div class="draggable-content" id="controls">
<button id="prevChap"class="ri-arrow-left-circle-fill"></button>
<!-- <button id="prevImg" disabled class="ri-arrow-left-s-line"></button>
<button id="nextImg" class="ri-arrow-right-s-line"></button> -->
<button id="nextChap" class="ri-arrow-right-circle-fill"></button>
</div>
</div>
<div class="draggable">
<div class="draggable-content" id="zoom-controls">
<button id="zoomIn"class="ri-zoom-in-fill"></button>
<button id="zoomOut" class="ri-zoom-out-fill"></button>
<button id="reset" class="ri-find-replace-line"></button>
</div>
</div>
</div>
<!-- MODALS -->
<div class="modal-bg">
<div class="modal-content" id="options">
<div class="header"><span>Options</span><button class="ri-close-line closeModal"></button></div>
</div>
<div class="modal-content" id="backprompt">
<div class="header"><span>Close Reader</span><button class="ri-close-line closeModal"></button></div>
<p>Return to MRION Browser?</p>
<div class="button-group">
<button id="cancel">Cancel</button>
<button id="return">Return</button>
</div>
</div>
</div>
<div class="popup" id="error">
<span class="icon ri-error-warning-fill"></span>
<div class="text">
<span class="title">ERROR</span>
<span id='msg'>
</span>
</div>
</div>
<div class="popup" id="warning">
<span class="icon ri-alert-fill"></span>
<div class="text">
<span class="title">WARNING</span>
<span id='msg'>
</span>
</div>
</div>
<div class="popup" id="info">
<span class="icon ri-information-fill"></span>
<div class="text">
<span class="title">INFORMATION</span>
<span id='msg'>
</span>
</div>
</div>
<div class="popup" id="notif">
<span class="icon ri-notification-3-fill"></span>
<div class="text">
<span class="title">NOTIFICATION</span>
<span id='msg'>
</span>
</div>
</div>
</body>
<script>window.jQuery = window.$ = require('jquery')</script>
<script src='resources/jquery-ui.min.js'></script>
<script src='resources/reader-renderer.js'></script>
</html>