yxw 2023-11-23 12:30:42 +08:00
parent 7aa0988a33
commit 5b6fba1b84
1 changed files with 8 additions and 0 deletions

View File

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