-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (73 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faust DSP</title>
<style>
body {
color: #b0b0b0;
background-color: #1f1f1f;
display: flex;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
position: absolute;
}
main {
margin: 20px;
display: flex;
flex-direction: column;
flex: 1 1 100%;
}
main span {
position: relative;
display: flex;
}
main span[hidden] {
display: none;
}
main span span {
margin: 0px 10px;
flex: 1;
}
main span select {
flex: 2;
}
#dsp-switch {
margin: 20px auto;
}
#button-dsp {
padding: 10px;
}
#div-faust-ui {
flex: 1 1 auto;
display: flex;
position: relative;
flex-direction: column;
}
</style>
<link rel="stylesheet" href="./faust-ui/index.css">
</head>
<body>
<main>
<span id="audio-input">
<span>Select Audio Input Device</span>
<select id="select-audio-input"></select>
</span>
<span id="midi-input">
<span>Select MIDI Input Device</span>
<select id="select-midi-input"></select>
</span>
<span id="dsp-switch">
<button id="button-dsp">Activate DSP</button>
</span>
<div id="div-faust-ui">
</div>
</main>
<script src="./osci.js"></script>
</body>
</html>