diff --git a/home.html b/home.html index 6d3c4dc..a2abc5a 100644 --- a/home.html +++ b/home.html @@ -1008,6 +1008,7 @@ $('#lineinput-voice-add').on('click', function () { let num = $("#lineinput .volume-slider input").val(); let value = ((num * (84 / 100) - 72) + 1).toFixed(1) + $("#lineinput .volume-slider input").val(value) lineinputPost = false console.log('click',value) LineInputSlider(value) @@ -1016,6 +1017,7 @@ $('#lineinput-voice-low').on('click', function () { let num = $("#lineinput .volume-slider input").val(); let value = ((num * (84 / 100) - 72) - 1).toFixed(1) + $("#lineinput .volume-slider input").val(value); lineinputPost = false console.log('click',value) LineInputSlider(value) @@ -1057,6 +1059,7 @@ $('#microphone1-voice-add').on('click', function () { let num = $("#microphone1 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) + $("#microphone1 .volume-slider input").val(value); mic1Post = false console.log('click',value) Microphone1Slider(value) @@ -1065,6 +1068,7 @@ $('#microphone1-voice-low').on('click', function () { let num = $("#microphone1 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) + $("#microphone1 .volume-slider input").val(value); mic1Post = false console.log('click',value) Microphone1Slider(value) @@ -1107,6 +1111,7 @@ $('#microphone2-voice-add').on('click', function () { let num = $("#microphone2 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) + $("#microphone2 .volume-slider input").val(value); mic2Post = false console.log('click',value) Microphone2Slider(value) @@ -1115,6 +1120,7 @@ $('#microphone2-voice-low').on('click', function () { let num = $("#microphone2 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) + $("#microphone2 .volume-slider input").val(value); mic2Post = false console.log('click',value) Microphone2Slider(value) @@ -1155,6 +1161,7 @@ $('#outputvolume-voice-add').on('click', function () { let num = $("#outputvolume .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) + $("#outputvolume .volume-slider input").val(value); outputPost = false console.log('click',value) OutputVolumeSlider(value) @@ -1163,6 +1170,7 @@ $('#outputvolume-voice-low').on('click', function () { let num = $("#outputvolume .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) + $("#outputvolume .volume-slider input").val(value); outputPost = false console.log('click',value) OutputVolumeSlider(value)