forked from Darylxyx/JavaScript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 960 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 960 Bytes
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
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control " content="no-cache,must-revalidate">
<meta name="description" content="">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<title>Drag&Cut</title>
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<div class="container">
<div class="page page-root">
<input id="files" type="file"/>
<label for="files">
<p class="choose">Choose Image</p>
</label>
</div>
<div class="page page-choose">
<div class="pic-area"></div>
<p class="submit-btn">Complete</p>
</div>
<div class="page page-result">
<div class="show-area"></div>
</div>
</div>
<script src="./cutter/hammer.js"></script>
<script src="./cutter/cutter.js"></script>
<script src="./src/index.js"></script>
</body>
</html>