-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.32 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>low poly风格图片生成器</title>
<link rel="stylesheet" href="style/index.css">
</head>
<body>
<section id="set">
<div id="source-wrapper">
<label for="source-input">单击或将图片拖拽到此处</label>
<input type="file" name="source" id="source-input">
</div>
<div id="set-wrapper">
<label>Edge Detect(边缘检测用的):</label>
<input type="text" name="EDGE_DETECT_VALUE">
<label>Point Rate(像素点分布比率):</label>
<input type="text" name="POINT_RATE">
<label>Point Max Num(随机取样点的个数):</label>
<input type="text" name="POINT_MAX_NUM">
<label>Blur Size(边界模糊大小):</label>
<input type="text" name="BLUR_SIZE">
<label>Edge Size(边缘取样个数>=2):</label>
<input type="text" name="EDGE_SIZE">
<label>Pixel Limit(最大像素值):</label>
<input type="text" name="PIXEL_LIMIT">
</div>
<div id="btn-wra">
<button id="run-btn">RUN</button>
<button id="download-btn" class="disable">DOWNLOAD</button>
</div>
</section>
<section id="wrapper">
<img src="img/05.jpg" alt="图片容器" id="img-wrapper">
</section>
<div id="prompt">
这里有一些提示
</div>
<script src="script/jquery.min.js"></script>
<script src="script/main.js"></script>
</body>
</html>