-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.2 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Drag Upload</title>
<!-- css -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="upload-area" id="upload-area">
<!-- error -->
<div class="file-error" id="file-error">
<img src="assets/img/cancel.svg" width="30">
<p></p>
</div>
<!-- info -->
<div class="file-info" id="file-info">
<img src="assets/img/up.svg" width="60">
<p id="file-placeholder">click or drag file here to upload</p>
</div>
<!-- file -->
<label for="file"></label>
<input type="file" name="myFile" id="file">
<!-- preview -->
<img src="assets/img/preview.svg" width="55" class="preview-icon" id="preview-icon">
<div class="preview-box" id="preview-box">
<img>
</div>
</div>
<!-- js -->
<script src="assets/js/drag.js"></script>
</body>
</html>