From 5b6fba1b843a622fffa1af544070c829790ea62d Mon Sep 17 00:00:00 2001 From: yxw <17074267@qq.com> Date: Thu, 23 Nov 2023 12:30:42 +0800 Subject: [PATCH] fix --- home.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home.html b/home.html index e647b0d..6d3c4dc 100644 --- a/home.html +++ b/home.html @@ -1009,6 +1009,7 @@ let num = $("#lineinput .volume-slider input").val(); let value = ((num * (84 / 100) - 72) + 1).toFixed(1) lineinputPost = false + console.log('click',value) LineInputSlider(value) }) @@ -1016,6 +1017,7 @@ let num = $("#lineinput .volume-slider input").val(); let value = ((num * (84 / 100) - 72) - 1).toFixed(1) lineinputPost = false + console.log('click',value) LineInputSlider(value) }) @@ -1056,6 +1058,7 @@ let num = $("#microphone1 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) mic1Post = false + console.log('click',value) Microphone1Slider(value) }) @@ -1063,6 +1066,7 @@ let num = $("#microphone1 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) mic1Post = false + console.log('click',value) Microphone1Slider(value) }) @@ -1104,6 +1108,7 @@ let num = $("#microphone2 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) mic2Post = false + console.log('click',value) Microphone2Slider(value) }) @@ -1111,6 +1116,7 @@ let num = $("#microphone2 .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) mic2Post = false + console.log('click',value) Microphone2Slider(value) }) @@ -1150,6 +1156,7 @@ let num = $("#outputvolume .volume-slider input").val(); let value = ((num * (20 / 100) - 10) + 1).toFixed(1) outputPost = false + console.log('click',value) OutputVolumeSlider(value) }) @@ -1157,6 +1164,7 @@ let num = $("#outputvolume .volume-slider input").val(); let value = ((num * (20 / 100) - 10) - 1).toFixed(1) outputPost = false + console.log('click',value) OutputVolumeSlider(value) })