deploy: 0e7575f562
This commit is contained in:
File diff suppressed because one or more lines are too long
27
index.html
27
index.html
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<script src="https://unpkg.com/hydra-synth"></script>
|
<script src="https://unpkg.com/hydra-synth"></script>
|
||||||
<script type="module" crossorigin src="/assets/index-16094582.js"></script>
|
<script type="module" crossorigin src="/assets/index-f4f16d67.js"></script>
|
||||||
<link rel="stylesheet" href="/assets/index-59cf8db1.css">
|
<link rel="stylesheet" href="/assets/index-59cf8db1.css">
|
||||||
</head>
|
</head>
|
||||||
<style>
|
<style>
|
||||||
@ -309,18 +309,31 @@
|
|||||||
|
|
||||||
<!-- Audio nudge slider -->
|
<!-- Audio nudge slider -->
|
||||||
<div id="midi-settings-container" class="bg-gray-200 rounded-lg flex flex-col mx-4 my-4 pt-4 pb-2">
|
<div id="midi-settings-container" class="bg-gray-200 rounded-lg flex flex-col mx-4 my-4 pt-4 pb-2">
|
||||||
<p class="font-bold text-xl ml-4 pb-4 underline underline-offset-4">Audio Output nudge</p>
|
<p class="font-bold text-xl ml-4 pb-4 underline underline-offset-4">Audio/Event Nudging</p>
|
||||||
<div class="flex flex-colunm">
|
<div class="flex flex-column pb-2">
|
||||||
<input
|
<input
|
||||||
type="range" id="audio_nudge"
|
type="range" id="audio_nudge"
|
||||||
name="rangeInput"
|
name="audiorangeInput"
|
||||||
min="-1000" max="1000"
|
min="-200" max="200"
|
||||||
value="0"
|
value="0"
|
||||||
class="w-full ml-4"
|
class="w-full ml-4"
|
||||||
oninput="amount.value=audio_nudge.value"
|
oninput="nudgenumber.value=audio_nudge.value"
|
||||||
>
|
>
|
||||||
<output name="amount" id="amount" for="rangeInput" class="bg-gray-500 rounded-lg ml-2 mr-4 px-4 py-1 text-white">0</output>
|
<output name="nudgenumber" id="nudgenumber" for="audiorangeInput" class="bg-gray-500 rounded-lg ml-2 mr-4 px-4 py-1 text-white">0</output>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-column">
|
||||||
|
<input
|
||||||
|
type="range" id="dough_nudge"
|
||||||
|
name="doughrangeInput"
|
||||||
|
min="0" max="100"
|
||||||
|
value="0"
|
||||||
|
class="w-full ml-4"
|
||||||
|
oninput="doughnumber.value=dough_nudge.value"
|
||||||
|
>
|
||||||
|
<output name="doughnumber" id="doughnumber" for="doughrangeInput" class="bg-gray-500 rounded-lg ml-2 mr-4 px-4 py-1 text-white">0</output>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex space-x-6 border-t border-gray-200 rounded-b dark:border-gray-600 mx-4 border-spacing-y-4">
|
<div class="flex space-x-6 border-t border-gray-200 rounded-b dark:border-gray-600 mx-4 border-spacing-y-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user