-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
50 lines (41 loc) · 1.38 KB
/
index.ejs
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>visual-Identity</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="title">visual-identity</h1>
<p>A voice identity fingerprint generator</p>
<p class="mic">Please allow microphone use</p>
<div class="polycontainer">
<canvas class="polygon" width="640" height="640"></canvas>
<div class="timer">Start</div>
</div>
<div class="controls2">
<a class="blue button popup-modal" href="#save-modal" id="save">SAVE</a>
<a href="http://radiodario.github.io/visual-identity-expo" target="_blank" class="button green">gallery</a>
</div>
<div class="viz">
<canvas class="visualiser" width="640" height="100"></canvas>
<div class="controls">
<button id="start">start</button>
<button id="stop">stop</button>
</div>
</div>
<div id="save-modal" class="mfp-hide white-popup-block">
<div class="image"></div>
<div class="form">
Give it a title <input type="text" name="title" id="title">
</div>
<p class="buttons">
<a class="button green publish" href="#">publish</a>
<a class="button red popup-modal-dismiss" href="#">Dismiss</a>
</p>
</div>
<script id="live-reload" src="http://localhost:35729/livereload.js"></script>
<script src="app.js"></script>
</body>
</html>