-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
414 lines (410 loc) · 26.3 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1548903334937961" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script async src="https://fundingchoicesmessages.google.com/i/pub-1548903334937961?ers=1" nonce="5gGC7hrCBYGlIIqIKUedaw"></script><script nonce="5gGC7hrCBYGlIIqIKUedaw">(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>TFT Remix Rumble Music Mixer</title>
</head>
<body>
<div class="background-image"></div>
<div class="background-darken"></div>
<h1>TFT Remix Rumble Music Mixer</h1>
<h2>Select Tracks to Play, Select multiple tracks to play on top of eachover to create unique combinations.</h2>
<div class="alert alert-warning">
<strong>Last Hurrah. Presets and MOBILE SUPPORT AT LAST</strong><br>
With Set 10 coming to a close, Enjoy long awaited mobile support as well as many community presets from the original reddit post found <a href="https://www.reddit.com/r/TeamfightTactics/comments/181wwgx/i_made_a_mixer_where_you_can_make_your_own_remix/"> here.</a> Thank you all for your support and remember to report any issues and feature suggestions to the <a href="https://github.com/OfficiallySp/tftmixer"><strong>GitHub repository</strong></a>
</div>
<div>
<label for="globalVolume"><strong>
<h4>Global Volume:</h4>
</strong></label>
<input type="range" id="globalVolume" name="volume" min="0" max="1" step="0.01" value="1" oninput="setGlobalVolume(this.value)">
</div>
<div class="toggle">
<input type="checkbox" id="realTime" onclick="toggleRealTime()"/>
<label for="realTime">Real Time Add/Remove Tracks (longer load on play) </label>
</div>
<div class="toggle">
<input type="checkbox" id="repeat">
<label for="repeat">Repeat</label>
</div>
<div id="loadingIndicator" class="text-center" style="display: none;">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading Tracks...</span>
</div>
</div>
<button class="btn btn-success" onclick="playSelectedTracks()">Play Selected Tracks</button>
<button class="btn btn-secondary" onclick="stopAllTracks()">Stop All Music</button>
<button class="btn btn-warning" onclick="randomSelectTracks()">Random Select Tracks</button>
<button class="btn btn-warning" onclick="randomSelectEarlyTracks()">Random Select Early Tracks</button>
<button class="btn btn-warning" onclick="randomSelectLateTracks()">Random Select Late Tracks</button>
<button class="btn btn-danger" onclick="clearAllSelections()">Clear All Selections</button>
<button onclick="generateShareableLink()" class="btn btn-info">Generate Shareable Link</button>
<button onclick="tweetMix()" class="btn btn-primary"><i class="fab fa-twitter"></i> Tweet Mix</button>
<div class="alert alert-success" id="copyNotification" style="display:none; position: fixed; bottom: 20px; right: 20px;">
<strong>URL Copied to Clipboard</strong>
</div>
<hr>
<div class="container">
<div class="main-content">
<div class="trait-container">
<div class="trait">
<img src="icon/kda.png" alt="KDA">
<h3>KDA</h3>
<input type="checkbox" id="kda_early_drums" name="kda_early_drums" class="early">
<label for="kda_early_drums">early_drums</label>
<audio id="audiokda_early_drums" src="tracks/kda_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="kda_early_main" name="kda_early_main" class="early">
<label for="kda_early_main">early_main</label>
<audio id="audiokda_early_main" src="tracks/kda_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="kda_early_secondary" name="kda_early_secondary" class="early">
<label for="kda_early_secondary">early_secondary</label>
<audio id="audiokda_early_secondary" src="tracks/kda_early_secondary.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="kda_late_drums" name="kda_late_drums" class="late">
<label for="kda_late_drums">late_drums</label>
<audio id="audiokda_late_drums" src="tracks/kda_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="kda_late_main" name="kda_late_main" class="late">
<label for="kda_late_main">late_main</label>
<audio id="audiokda_late_main" src="tracks/kda_late_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="kda_late_secondary" name="kda_late_secondary" class="late">
<label for="kda_late_secondary">late_secondary</label>
<audio id="audiokda_late_secondary" src="tracks/kda_late_secondary.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/punk.png" alt="Punk">
<h3>Punk</h3>
<input type="checkbox" id="punk_early_drums" name="punk_early_drums" class="early">
<label for="punk_early_drums">early_drums</label>
<audio id="audiopunk_early_drums" src="tracks/punk_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="punk_early_main" name="punk_early_main" class="early">
<label for="punk_early_main">early_main</label>
<audio id="audiopunk_early_main" src="tracks/punk_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="punk_late_drums" name="punk_late_drums" class="late">
<label for="punk_late_drums">late_drums</label>
<audio id="audiopunk_late_drums" src="tracks/punk_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="punk_late_main" name="punk_late_main" class="late">
<label for="punk_late_main">late_main</label>
<audio id="audiopunk_late_main" src="tracks/punk_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/maestro.png" alt="maestro">
<h3>Maestro</h3>
<input type="checkbox" id="maestro_early" name="maestro_early" class="early">
<label for="maestro_early">early</label>
<audio id="audiomaestro_early" src="tracks/maestro_early.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="maestro_late" name="maestro_late" class="late">
<label for="maestro_late">late</label>
<audio id="audiomaestro_late" src="tracks/maestro_late.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/8bit.png" alt="8bit">
<h3>8 Bit</h3>
<input type="checkbox" id="8bit_early_drums" name="8bit_early_drums" class="early">
<label for="8bit_early_drums">early_drums</label>
<audio id="audio8bit_early_drums" src="tracks/8bit_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="8bit_early_main" name="8bit_early_main" class="early">
<label for="8bit_early_main">early_main</label>
<audio id="audio8bit_early_main" src="tracks/8bit_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="8bit_late_drums" name="8bit_late_drums" class="late">
<label for="8bit_late_drums">late_drums</label>
<audio id="audio8bit_late_drums" src="tracks/8bit_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="8bit_late_main" name="8bit_late_main" class="late">
<label for="8bit_late_main">late_main</label>
<audio id="audio8bit_late_main" src="tracks/8bit_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/country.png" alt="8bit">
<h3>Country</h3>
<input type="checkbox" id="country_early_drums" name="country_early_drums" class="early">
<label for="country_early_drums">early_drums</label>
<audio id="audiocountry_early_drums" src="tracks/country_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="country_early_main" name="country_early_main" class="early">
<label for="country_early_main">early_main</label>
<audio id="audiocountry_early_main" src="tracks/country_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="country_late_drums" name="country_late_drums" class="late">
<label for="country_late_drums">late_drums</label>
<audio id="audiocountry_late_drums" src="tracks/country_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="country_late_main" name="country_late_main" class="late">
<label for="country_late_main">late_main</label>
<audio id="audiocountry_late_main" src="tracks/country_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/disco.png" alt="disco">
<h3>Disco</h3>
<input type="checkbox" id="disco_early_drums" name="disco_early_drums" class="early">
<label for="disco_early_drums">early_drums</label>
<audio id="audiodisco_early_drums" src="tracks/disco_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="disco_early_main" name="disco_early_main" class="early">
<label for="disco_early_main">early_main</label>
<audio id="audiodisco_early_main" src="tracks/disco_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="disco_late_drums" name="disco_late_drums" class="late">
<label for="disco_late_drums">late_drums</label>
<audio id="audiodisco_late_drums" src="tracks/disco_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="disco_late_main" name="disco_late_main" class="late">
<label for="disco_late_main">late_main</label>
<audio id="audiodisco_late_main" src="tracks/disco_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/edm.png" alt="EDM">
<h3>EDM</h3>
<input type="checkbox" id="edm_early_drums" name="edm_early_drums" class="early">
<label for="edm_early_drums">early_drums</label>
<audio id="audioedm_early_drums" src="tracks/edm_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="edm_early_main" name="edm_early_main" class="early">
<label for="edm_early_main">early_main</label>
<audio id="audioedm_early_main" src="tracks/edm_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="edm_late_drums" name="edm_late_drums" class="late">
<label for="edm_late_drums">late_drums</label>
<audio id="audioedm_late_drums" src="tracks/edm_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="edm_late_main" name="edm_late_main" class="late">
<label for="edm_late_main">late_main</label>
<audio id="audioedm_late_main" src="tracks/edm_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/emo.png" alt="emo">
<h3>Emo</h3>
<input type="checkbox" id="emo_early_drums" name="emo_early_drums" class="early">
<label for="emo_early_drums">early_drums</label>
<audio id="audioemo_early_drums" src="tracks/emo_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="emo_early_main" name="emo_early_main" class="early">
<label for="emo_early_main">early_main</label>
<audio id="audioemo_early_main" src="tracks/emo_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="emo_late_drums" name="emo_late_drums" class="late">
<label for="emo_late_drums">late_drums</label>
<audio id="audioemo_late_drums" src="tracks/emo_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="emo_late_main" name="emo_late_main" class="late">
<label for="emo_late_main">late_main</label>
<audio id="audioemo_late_main" src="tracks/emo_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/heartsteel.png" alt="heartsteel">
<h3>Heartsteel</h3>
<input type="checkbox" id="heartsteel_early_drums" name="heartsteel_early_drums" class="early">
<label for="heartsteel_early_drums">early_drums</label>
<audio id="audioheartsteel_early_drums" src="tracks/heartsteel_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="heartsteel_early_main" name="heartsteel_early_main" class="early">
<label for="heartsteel_early_main">early_main</label>
<audio id="audioheartsteel_early_main" src="tracks/heartsteel_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="heartsteel_early_secondary" name="heartsteel_early_secondary" class="early">
<label for="heartsteel_early_secondary">early_secondary</label>
<audio id="audioheartsteel_early_secondary" src="tracks/heartsteel_early_secondary.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="heartsteel_late_drums" name="heartsteel_late_drums" class="late">
<label for="heartsteel_late_drums">late_drums</label>
<audio id="audioheartsteel_late_drums" src="tracks/illbeats_late.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="heartsteel_late_main" name="heartsteel_late_main" class="late">
<label for="heartsteel_late_main">late_main</label>
<audio id="audioheartsteel_late_main" src="tracks/heartsteel_late_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="heartsteel_late_secondary" name="heartsteel_late_secondary" class="late">
<label for="heartsteel_late_secondary">late_secondary</label>
<audio id="audioheartsteel_late_secondary" src="tracks/heartsteel_late_secondary.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/hyperpop.png" alt="hyperpop">
<h3>Hyperpop</h3>
<input type="checkbox" id="hyperpop_early" name="hyperpop_early" class="early">
<label for="hyperpop_early">early</label>
<audio id="audiohyperpop_early" src="tracks/hyperpop_early.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="hyperpop_late" name="hyperpop_late" class="late">
<label for="hyperpop_late">late</label>
<audio id="audiohyperpop_late" src="tracks/hyperpop_late.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="hyperpop_late_drums" name="hyperpop_late_drums" class="late">
<label for="hyperpop_late_drums">late_drums</label>
<audio id="audiohyperpop_late_drums" src="tracks/hyperpop_late_drums.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/illbeats.png" alt="ILLBEATS">
<h3>ILLBEATS</h3>
<input type="checkbox" id="illbeats_early" name="illbeats_early" class="early">
<label for="illbeats_early">early</label>
<audio id="audioillbeats_early" src="tracks/illbeats_early.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="illbeats_late" name="illbeats_late" class="late">
<label for="illbeats_late">late</label>
<audio id="audioillbeats_late" src="tracks/heartsteel_late_drums.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/jazz.png" alt="jazz">
<h3>Jazz</h3>
<input type="checkbox" id="jazz_early_main" name="jazz_early_main" class="early">
<label for="jazz_early_main">early_main</label>
<audio id="audiojazz_early_main" src="tracks/jazz_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="jazz_late_main" name="jazz_late_main" class="late">
<label for="jazz_late_main">late_main</label>
<audio id="audiojazz_late_main" src="tracks/jazz_late_main.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/mixmaster.png" alt="mixmaster">
<h3>MixMaster</h3>
<input type="checkbox" id="mixmaster_early" name="mixmaster_early" class="early">
<label for="mixmaster_early">early</label>
<audio id="audiomixmaster_early" src="tracks/mixmaster_early.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="mixmaster_late" name="mixmaster_late" class="late">
<label for="mixmaster_late">late</label>
<audio id="audiomixmaster_late" src="tracks/mixmaster_late.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/pentakill.png" alt="pentakill">
<h3>Pentakill</h3>
<input type="checkbox" id="pentakill_early_drums" name="pentakill_early_drums" class="early">
<label for="pentakill_early_drums">early_drums</label>
<audio id="audiopentakill_early_drums" src="tracks/pentakill_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="pentakill_early_main" name="pentakill_early_main" class="early">
<label for="pentakill_early_main">early_main</label>
<audio id="audiopentakill_early_main" src="tracks/pentakill_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="pentakill_early_secondary" name="pentakill_early_secondary" class="early">
<label for="pentakill_early_secondary">early_secondary</label>
<audio id="audiopentakill_early_secondary" src="tracks/pentakill_early_secondary.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="pentakill_late_drums" name="pentakill_late_drums" class="late">
<label for="pentakill_late_drums">late_drums</label>
<audio id="audiopentakill_late_drums" src="tracks/pentakill_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="pentakill_late_main" name="pentakill_late_main" class="late">
<label for="pentakill_late_main">late_main</label>
<audio id="audiopentakill_late_main" src="tracks/pentakill_late_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="pentakill_late_secondary" name="pentakill_late_secondary" class="late">
<label for="pentakill_late_secondary">late_secondary</label>
<audio id="audiopentakill_late_secondary" src="tracks/pentakill_late_secondary.ogg" preload="none" loop></audio>
</div>
<div class="trait">
<img src="icon/truedmg.png" alt="truedamage">
<h3>True Damage</h3>
<input type="checkbox" id="truedamage_early_drums" name="truedamage_early_drums" class="early">
<label for="truedamage_early_drums">early_drums</label>
<audio id="audiotruedamage_early_drums" src="tracks/truedamage_early_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="truedamage_early_main" name="truedamage_early_main" class="early">
<label for="truedamage_early_main">early_main</label>
<audio id="audiotruedamage_early_main" src="tracks/truedamage_early_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="truedamage_early_secondary" name="truedamage_early_secondary" class="early">
<label for="truedamage_early_secondary">early_secondary</label>
<audio id="audiotruedamage_early_secondary" src="tracks/truedamage_early_secondary.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="truedamage_late_drums" name="truedamage_late_drums" class="late">
<label for="truedamage_late_drums">late_drums</label>
<audio id="audiotruedamage_late_drums" src="tracks/truedamage_late_drums.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="truedamage_late_main" name="truedamage_late_main" class="late">
<label for="truedamage_late_main">late_main</label>
<audio id="audiotruedamage_late_main" src="tracks/truedamage_late_main.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="truedamage_late_secondary" name="truedamage_late_secondary" class="late">
<label for="truedamage_late_secondary">late_secondary</label>
<audio id="audiotruedamage_late_secondary" src="tracks/truedamage_late_secondary.ogg" preload="none" loop></audio>
</div>
</div>
</div>
<div class="community-presets">
<h3>Reddit Community Presets</h3>
<ul>
<li><button type="button" onclick="applyPreset('preset0')">Developer Preset</button></li>
<li><button type="button" onclick="applyPreset('preset1')">u/Drwyz</button></li>
<li><button type="button" onclick="applyPreset('preset2')">u/rishkebab</button></li>
<li><button type="button" onclick="applyPreset('preset3')">u/sevenaya</button></li>
<li><button type="button" onclick="applyPreset('preset4')">u/ReasonableZone2978</button></li>
<li><button type="button" onclick="applyPreset('preset5')">u/bahaahamza_</button></li>
<li><button type="button" onclick="applyPreset('preset6')">u/Alunze</button></li>
<li><button type="button" onclick="applyPreset('preset7')">u/Visible_Tangelo_2731</button></li>
<li><button type="button" onclick="applyPreset('preset8')">u/weissclimbers</button></li>
<li><button type="button" onclick="applyPreset('preset8')">u/Dr_Mr_G</button></li>
<li><button type="button" onclick="applyPreset('preset9')">u/deleted</button></li>
<li><button type="button" onclick="applyPreset('preset10')">u/liquidrekto 1</button></li>
<li><button type="button" onclick="applyPreset('preset11')">u/liquidrekto 2</button></li>
<li><button type="button" onclick="applyPreset('preset12')">u/liquidrekto 3</button></li>
<li><button type="button" onclick="applyPreset('preset13')">u/liquidrekto 4</button></li>
<li><button type="button" onclick="applyPreset('preset14')">u/liquidrekto 5</button></li>
<li><button type="button" onclick="applyPreset('preset15')">u/liquidrekto 6</button></li>
</ul>
</div>
</div>
<hr>
<div class="trait">
<h3>Other Tracks</h3>
<input type="checkbox" id="starting_carousel" name="starting_carousel">
<label for="starting_carousel">Starting Carousel</label>
<audio id="audiostarting_carousel" src="tracks/starting_carousel.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="piano_early" name="piano_early" class="early">
<label for="piano_early">No Traits Early</label>
<audio id="audiopiano_early" src="tracks/piano_early.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="piano_late" name="piano_late" class="late">
<label for="piano_late">No Traits Late</label>
<audio id="audiopiano_late" src="tracks/piano_late.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death1" name="death1">
<label for="death1">Death 1</label>
<audio id="audiodeath1" src="tracks/death1.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death2" name="death2">
<label for="death2">Death 2</label>
<audio id="audiodeath2" src="tracks/death2.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death3" name="death3">
<label for="death3">Death 3</label>
<audio id="audiodeath3" src="tracks/death3.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death4" name="death4">
<label for="death4">Death 4</label>
<audio id="audiodeath4" src="tracks/death4.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death5" name="death5">
<label for="death5">Death 5</label>
<audio id="audiodeath5" src="tracks/death5.ogg" preload="none" loop></audio>
<br>
<input type="checkbox" id="death6" name="death6">
<label for="death6">Death 6</label>
<audio id="audiodeath6" src="tracks/death6.ogg" preload="none" loop></audio>
</div>
<script src="script.js"></script>
<hr>
<h3>Credits:</h3>
<h4>Created by <a href="https://officiallysp.net">OfficiallySp</a></h4>
<h4>Track referencing + additional coding by Tactoe</h4>
<h4>Real time support by mattmora</h4>
<h4>Additional Contributions by mayopon</h4>
<h4>TFT / LoL universe made by <a href="https://www.riotgames.com/en">Riot Games</a></h4>
<h4>© Shane Pepperell 2023 - 2024</h4>
</body>
</html>