-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (128 loc) · 5.37 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="author" content="">
<meta name="description" content="">
<title>keytap</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Custom styles -->
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<!-- Keyboard -->
<div id="keyboard">
<!-- top row -->
<div id="top-row" class="key-row">
</div>
<!-- /#top row-->
<!-- home row -->
<div id="home-row" class="key-row">
</div>
<!-- /#home row-->
<!-- bottom row -->
<div id="bottom-row" class="key-row">
</div>
<!-- /#bottom row -->
</div>
<!-- /#Keyboard -->
<input type="checkbox" id="customization-panel-toggle" checked />
<label for="customization-panel-toggle" class="material-icons"><span>keyboard_arrow_up</span></label>
<!-- Customization Panel -->
<div id="customization-panel">
<!-- Sound Library -->
<div id="sound-library">
<!-- Library Menu -->
<div id="library-menu">
<div id="search-bar">
<i id="search-icon" class="material-icons icon-s">search</i>
<input type="text" id="search-input" placeholder="Filter by name" />
<i id="clear-icon" class="material-icons icon-xs">close</i>
</div>
<button type="button" class="custom-icons upload_file icon-s orange-btn"></button>
<button type="button" class="material-icons icon-s orange-btn">create_new_folder</button>
</div>
<!-- /#Library Menu -->
<!-- Directory Listing-->
<ul id="root-directory" class="directory-listing">
</ul>
<!-- /#Directory Listing-->
</div>
<!-- /#Sound Library -->
<!-- Customization Settings -->
<div id="customization-settings">
<div id="selected-key-indication">h</div>
<input type="text" id="track-name-input" />
<div class="heading">SOUND</div>
<hr />
<div id="launch-setting" class="setting-item">
<label for="launch-mode-selection">Launch Mode</label>
<select id="launch-mode">
<option value="press" selected>Press to play</option>
<option value="hold">Hold to play</option>
<option value="toggle">Press to toggle</option>
</select>
</div>
<div id="loop-setting" class="setting-item">
<label for="loop-toggle" class="test">
<input type="checkbox" id="loop-toggle"/>
<div class="checkbox"><div class="checkmark"></div></div>
Loop
</label>
</div>
<div class="heading">VISUAL</div>
<hr />
<div id="track-color-setting" class="setting-item">
<label for="track-color">Track Color</label>
<div class="color-input">
<span>#</span>
<input type="text" id="track-color" maxlength="6" />
</div>
<button type="button" class="color-preview"></button>
<!-- Color Picker -->
<div class="color-picker">
<div class="color-palette">
<button type="button" class="color light-pink"></button>
<button type="button" class="color light-red"></button>
<button type="button" class="color light-orange"></button>
<button type="button" class="color light-yellow"></button>
<button type="button" class="color light-green"></button>
<button type="button" class="color light-blue"></button>
<button type="button" class="color light-purple"></button>
<button type="button" class="color pink"></button>
<button type="button" class="color red"></button>
<button type="button" class="color orange"></button>
<button type="button" class="color yellow"></button>
<button type="button" class="color green"></button>
<button type="button" class="color blue"></button>
<button type="button" class="color purple"></button>
<button type="button" class="color dark-pink"></button>
<button type="button" class="color dark-red"></button>
<button type="button" class="color dark-orange"></button>
<button type="button" class="color dark-yellow"></button>
<button type="button" class="color dark-green"></button>
<button type="button" class="color dark-blue"></button>
<button type="button" class="color dark-purple"></button>
</div>
</div>
<!-- /.Color Picker -->
</div>
<div id="light-color-setting" class="setting-item">
<label for="light-color">Light Color</label>
<div class="color-input">
<span>#</span>
<input type="text" id="light-color" maxlength="6" />
</div>
<button type="button" class="color-preview"></button>
</div>
</div>
<!-- /#Customization Settings -->
</div>
<!-- /#Customization Panel -->
<!-- Scripts -->
<script type="text/javascript" src="js/howler.core.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>