forked from hoonsbory/canvasDotDrawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.36 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Dot Image On Canvas</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="./main.css" />
<script src="./js/index.js" type="module"></script>
</head>
<body>
<div class="controller">
<div>
<button id="autoBtn">자동</button>
<button id="originalBtn">원본</button>
<button id="resetBtn">초기화</button>
</div>
<div>
<div>
<input
type="range"
id="autoSpeed"
name="autoSpeed"
min="1"
max="300"
value="1"
/>
<label for="autoSpeed">자동 속도</label>
</div>
<input
type="range"
id="divideSpeed"
name="divideSpeed"
min="1"
max="20"
value="10"
/>
<label for="divideSpeed">애니메이션 속도</label>
</div>
</div>
<div class="mainWrapper">
<div>
<h1 class="typedTitle"></h1>
</div>
<div class="filebox">
<label for="imageInput">이미지 업로드</label>
<input type="file" accept="image/*" id="imageInput" />
</div>
</div>
</body>
</html>