gpt4 book ai didi

javascript - Firefox 中鼠标悬停时的声音

转载 作者:行者123 更新时间:2023-11-28 10:33:36 26 4
gpt4 key购买 nike

我正在使用以下脚本来实现网站上菜单按钮上的鼠标悬停音效。

<script LANGUAGE="JavaScript"><!--


var aySound = new Array();

aySound[0] = "s.mp3";

document.write('<BGSOUND ID="auIEContainer">')
IE = (navigator.appVersion.indexOf("MSIE")!=-1 && document.all)? 1:0;
NS = (navigator.appName=="Netscape" && navigator.plugins["LiveAudio"])? 1:0;
ver4 = IE||NS? 1:0;
onload=auPreload;

function auPreload() {
if (!ver4) return;
if (NS) auEmb = new Layer(0,window);
else {
Str = "<DIV ID='auEmb' STYLE='position:absolute;'></DIV>";
document.body.insertAdjacentHTML("BeforeEnd",Str);
}
var Str = '';
for (i=0;i<aySound.length;i++)
Str += "<EMBED SRC='"+aySound[i]+"' AUTOSTART='FALSE' HIDDEN='TRUE'>"
if (IE) auEmb.innerHTML = Str;
else {
auEmb.document.open();
auEmb.document.write(Str);
auEmb.document.close();
}
auCon = IE? document.all.auIEContainer:auEmb;
auCon.control = auCtrl;
}
function auCtrl(whSound,play) {
if (IE) this.src = play? aySound[whSound]:'';
else eval("this.document.embeds[whSound]." + (play? "play()":"stop()"))
}
function playSound(whSound) { if (window.auCon) auCon.control(whSound,true); }
function stopSound(whSound) { if (window.auCon) auCon.control(whSound,false); }
//-->
</script>

这在 IE 中工作正常,但在 Firefox 中不行。

有人知道是否有办法在不使用 flash 的情况下在 IE 和 Firefox 中获得相同的 onmouseover 音效吗?

谢谢

最佳答案

网站上的声音唯一方式是使用 Flash 或 Facebook 用于传入 IM 的任何方式,但这也需要 Apple Quicktime 才能播放。

关于javascript - Firefox 中鼠标悬停时的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2286953/

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