From b32772a30a3fd60aa3c8930d0446366bf82f0af1 Mon Sep 17 00:00:00 2001 From: yxw <17074267@qq.com> Date: Thu, 23 Nov 2023 12:41:59 +0800 Subject: [PATCH] fix --- home.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/home.html b/home.html index a2abc5a..8f89d61 100644 --- a/home.html +++ b/home.html @@ -1008,7 +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) @@ -1017,7 +1017,6 @@ $('#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) @@ -1059,7 +1058,6 @@ $('#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) @@ -1068,7 +1066,6 @@ $('#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) @@ -1111,7 +1108,6 @@ $('#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) @@ -1161,7 +1157,6 @@ $('#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) @@ -1170,7 +1165,6 @@ $('#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)