-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<input type="file" id="files" name="files[]" multiple>
<div id="drop-zone"><span class="centered-text">Drop files here</span></div>
<output id="list"></output>
<input id="file-to-blob" type="file"> Read bytes:
<span class="read-bytes-buttons">
<button data-startbyte="0" data-endbyte="4">1-5</button>
<button data-startbyte="5" data-endbyte="14">6-15</button>
<button data-startbyte="6" data-endbyte="7">7-8</button>
<button>Entire File</button>
</span>
<div id="byte-range"></div>
<div id="byte-content"></div>
<input id="file-with-progress" type="file">
<button id="cancel-read">Cancel Read</button>
<div id="progress-bar"><div class="percent">0%</div></div>
<script src="/script.js"></script>
</body>
</html>