Safari中未播放Javascript鼠标悬停音频

Javascript mouseover audio not playing in Safari

本文关键字:鼠标 悬停 音频 Javascript 播放 Safari      更新时间:2024-04-02

我无法在Safari中播放鼠标悬停音频。它适用于Chrome、||Opera、Camino、Firefox和IE。我在HTML:中使用它

<a onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()" href="#">link/a>

在我的页脚中有这个javascript:

<script>
// Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)
// Visit JavaScript Kit at http://www.javascriptkit.com/ for full source code
//** Usage: Instantiate script by calling: var uniquevar=createsoundbite("soundfile1",                 "fallbackfile2", "fallebacksound3", etc)
//** Call: uniquevar.playclip() to play sound
var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:
"mp3": "audio/mpeg",
"mp4": "audio/mp4",
"ogg": "audio/ogg",
"wav": "audio/wav"
}
function createsoundbite(sound){
var html5audio=document.createElement('audio')
if (html5audio.canPlayType){ //check support for HTML5 audio
    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
}
else{
    return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
}
}
//Initialize two sound clips with 1 fallback file each:
var mouseoversound=createsoundbite("http://graphicviolence.co.uk/sounds/typewriter.ogg", "http://graphicviolence.co.uk/sounds/typewriter.mp3")
var clicksound=createsoundbite("http://graphicviolence.co.uk/sounds/bell.ogg", "http://graphicviolence.co.uk/sounds/bell.mp3")
</script>

有人知道Safari为什么不执行这个吗?查看我的网站:http://graphicviolence.co.uk

谢谢Tim,伦敦

我在我的项目中使用了完全相同的脚本,无论是Chrome还是Safari,它都运行得非常好。但当谈到iPhone和iPad Safari时,它也搞砸了。我已经测试了你的,它真的不起作用。也许您可能想检查中的脚本插件