yxw 2023-11-23 12:41:59 +08:00
parent c0b4e47d96
commit b32772a30a
1 changed files with 1 additions and 7 deletions

View File

@ -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)