-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (36 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
51 lines (36 loc) · 1.3 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
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Canvas Track</title>
<link rel="stylesheet" type="text/css" href="_css/style.css" />
</head>
<body>
<input type="file" id="inp-image" />
<input type="button" id="inp-start-track" value="track!" />
<input type="button" id="inp-start-flow" value="flow!" />
<div id="bg-customization">
<label for="inp-bg-color">Pick a color for the background if needed</label>
<input type="color" id="inp-bg-color" value="#0000FF" />
<label for="inp-bg-alpha">Pick a color for the background if needed</label>
<input type="range" id="inp-bg-alpha" min="0" max="100" value="100" />
</div>
<div id="canvas-wrap">
<!-- <canvas id="playNowWithLights" width="786" height="450"></canvas> -->
<canvas id="canvas-bg" width="685" height="420"></canvas>
<canvas id="canvas" width="685" height="420"></canvas>
</div>
<pre id="result-to-array">
</pre>
<img id="img-final" />
<script src="_js/main.js"></script>
<script src="_js/file_api.js"></script>
<script src="_js/events.js"></script>
<script src="_js/paint_dots.js"></script>
<script src="_js/map_dots.js"></script>
<script src="_js/canvas.js"></script>
<script src="_js/ctx.js"></script>
<script src="_js/paint_track.js"></script>
<script src="_js/base.js"></script>
</body>
</html>