1

我们正在开发一个项目,该项目有一个页面,我们正在比较 4 种不同的声音。我们使用的脚本可以很好地播放每个声音,但是您可以按下每个链接,并且所有 4 个都可以同时播放。我们正试图弄清楚如何制作它,以便一次只播放一种声音。如果按声音“A”然后按声音“B”,声音“A”应该关闭,“B”将播放。

var html5_audiotypes={ 
"mp3": "audio/mpeg",
"ogg": "audio/ogg",
}
function createsoundbite(sound){
var html5audio=document.createElement('audio')
if (html5audio.canPlayType){ 
    for (var i=0; i<arguments.length; i++){
        var sourceel=document.createElement('source')
        sourceel.setAttribute('src', arguments[i])
        if (arguments[i].match(/\.(\w+)$/i))
            sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
        html5audio.appendChild(sourceel)
    }
    html5audio.load()
    html5audio.playclip=function(){
        html5audio.pause()
        html5audio.currentTime=0
        html5audio.play()
    }
    return html5audio
}
4

0 回答 0