-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 2.27 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Move Mixer</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Raleway" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-158354160-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-158354160-1');
</script>
</head>
<body>
<div class="app exp">
<form>
<div id="selection">
<h1>Move Mixer
<a href="howto.html" style="font-size:10px">How to use?</a>
</h1>
<div id="generation">
<div class="controlrow">
<label for="moves">Number of moves</label>
<input class="text" type="number" id="moves" value="64" style="width: 50px;">
</div>
<div class="controlrow">
<button type="button" id="randomize">Random sequence</button>
<button type="button" id="aaab">AAAB sequence</button>
<button type="button" id="abab">ABAB sequence</button>
<button type="button" id="asis">Use as-is</button>
</div>
</div>
<div id="playmode" style="display: none">
<div class="controlrow">
<label for="bpm">BPM</label>
<input class="text" type="number" id="bpm" value="160" style="width: 50px;">
<input type="checkbox" name="cymbals" id="cymbals">Generate Cymbals</input>
<div id="movedelay" style="display: none">
<label for="delay">First move after </label>
<input class="text" type="number" id="delay" value="12">
<label for="delay"> beats
</div>
</div>
<div class="controlrow">
<button type="button" id="play">Play</button>
<button type="button" id="stop" disabled>Stop</button>
<button type="button" id="reset">Reset</button>
</div>
</div>
</div>
<div class="scrollable">
<textarea id="moveList"></textarea>
<div id="sequence"></div>
</div>
</div>
</form>
<script src="nosleep.js"></script>
<script src="urlparams.js"></script>
<script src="player.js"></script>
</div>
</body>