-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Manga Zip Tool</title>
</head>
<body>
<h1>Manga Zip Tool</h1>
<p style="font-size:large">
How to use? <br />
<ol>
<li>choose a manga archive.</li>
<li>click on pages you want to delete, and they will become red in border.</li>
<li>click 'Process Zip File', you will get a new zip with only the pages you want.</li>
</ol>
</p>
<input type="file" id="zipFileInput" accept=".zip" />
<button id="processButton">Process Zip File</button><br />
<span style="font-size:x-large"> deleteCount: <span id="deleteCount" style="color: red;">0</span></span>;
<span style="font-size:x-large">delete Image Lists: [<span id="deleteList" style="color: red;"> </span>]</span>
<hr />
<div id="msg1" style="display: none; font-size: large;">Processing zip file</div>
<div id="imageList"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.5.0/jszip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.5/FileSaver.min.js"></script>
<script src="script.js"></script>
</body>
</html>