-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.html
49 lines (32 loc) · 1.25 KB
/
editor.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
<!DOCTYPE html>
<html>
<head>
<title>Image Quiz Editor</title>
<link rel="stylesheet" type="text/css" href="editor.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="editor.js"></script>
</head>
<body>
<div id="top">
<div id="files">
<input type="file" accept=".txt" multiple onchange="readFiles(this.files);">
<button id="submit" onclick="submit();" disabled>Submit</button>
</div>
<div id="editBar">
<form action="javascript:void(0);" onsubmit="changeImgSize();">
<input id="imgSize" type="number" min="50" max="500" value="250" step="25" onclick="changeImgSize();">
</form>
<p id="item"></p>
<button id="back" onclick="back();" disabled><</button>
<form action="javascript:void(0);" onsubmit="goTo();">
<input id="goToNumber" type="number" min="0" onclick="$(this).select();">
</form>
<button id="next" onclick="next();">></button>
<button id="done" onclick="done();">Done</button>
</div>
<p id="response"></p>
</div>
<a id="fileDL" download="images" style="display: none;"></a>
<div id="bottom"></div>
</body>
</html>