gpt4 book ai didi

javascript - 使用 javascript 使用向上和向下箭头控制音量

转载 作者:行者123 更新时间:2023-11-28 05:58:38 25 4
gpt4 key购买 nike

使用下面的javascript,我可以使用空格键播放和暂停音频,并使用左右箭头向前和向后移动,但现在我需要使用向上和向下箭头以及当我单击时增加和减少音量home 它应该转到音频文件的开头,当我单击结束按钮时,它应该转到音频文件的末尾。我该怎么做

 <script>
var audio = $("audio")[0];
$(document).keydown(function (e) {
var unicode = e.charCode ? e.charCode : e.keyCode;
console.log(unicode);
// right arrow
if (unicode == 39) {
audio.currentTime += 5;
// back arrow
} else if (unicode == 37) {
audio.currentTime -= 5;
// spacebar
} else if (unicode == 32) {
if (audio.paused) {
audio.play();
}
else {
audio.pause()
}
}
});
</script>

最佳答案

对于音量,您应该尝试以下操作:

var audio = $("audio")[0];
var source = audioCtx.createMediaElementSource(audio);
var gainNode = audioCtx.createGain();

$(document).keydown(function(e) {
var keycode = e.which;

if (keycode == 39) { // right arrow
audio.currentTime += 5;
} else if (keycode == 37) { // left arrow
audio.currentTime -= 5;
} else if (keycode == 38) { // up arrow
gainNode.gain.value += 0.1;
} else if (keycode == 40) { // down arrow
gainNode.gain.value -= 0.1;
} else if (keycode == 32) { // spacebar
if (audio.paused) {
audio.play();
} else {
audio.pause()
}
}
});

关于javascript - 使用 javascript 使用向上和向下箭头控制音量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37459652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com