-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.22 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>mini-comic</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="stylesheet" type="text/css" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div id="button-holder" class="button-holder position-absolute w-100 justify-content-center">
<button class="btn btn-dark btn-sm m-1" id="back">‹</button>
<div class="badge badge-dark d-flex align-items-center my-1" id="page-status">
<input id="current-page" type="number" size="4" />
<div> / </div>
<div id="total-page"></div>
</div>
<button class="btn btn-dark btn-sm m-1" id="forward">›</button>
</div>
<div id="page-holder" class="page-holder">
<img class="page h-100" id="page" src="" />
</div>
<div id="no-comic" class="position-absolute h-100 w-100 bg-dark text-light p-3">
<div id="no-comic-text" class="border border-light w-100 h-100 text-center rounded p-3 d-flex align-items-center justify-content-center">
Drop a .cbz or .cbr to begin reading.
</div>
</div>
<script>
require('./build/renderer.js');
</script>
</body>
</html>