-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
57 lines (57 loc) · 1.83 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Launchpad MK2 Text Display</title>
<link rel="icon" type="image/png" href="icon.png">
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/webmidi.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.min.js"></script>
<script src="devices.js"></script>
<script src="index.js"></script>
</head>
<body>
<input id="hideContainers" type="button" value="Let me watch the colors" />
<header class="container">
<h1>Rainbow Machine</h1>
<h4>Text Display for Launchpad MK2</h4>
</header>
<div class="container" id="root">
<form id="userTextForm">
<div>
<label for="inputText">Display text:</label>
<input id="inputText" type="text" />
</div>
<div>
<label for="colorSelect">Select a
<a href="https://pp.vk.me/c629221/v629221692/7b51/GHU1FeSqOgE.jpg"
rel="nofollow noopener noreferrer"
target="_blank">color</a>:
</label>
<input id="colorSelect" type="number" min="0" max="127" value="96" />
</div>
<div>
<label for="speed">Select a speed:</label>
<input id="speed" type="range" min="1" max="7" value="4" step="1" />
</div>
<div>
<label for="loopText">Loop the text:</label>
<input id="loopText" type="checkbox" />
</div>
<div>
<input type="submit" value="Display"/>
</div>
</form>
<div>
<input id="stopText" type="button" value="Clear" onclick="device.clear()" />
</div>
<div>
<input type="button" value="Toggle Background Animation" onclick="toggleBg()" />
</div>
<div>
<input type="button" value="Animate Launchpad With Background" onclick="toggleVegas()" />
</div>
</div>
</body>
</html>