寻找鼠标悬停声音脚本

发布于 2024-08-21 11:08:08 字数 178 浏览 7 评论 0原文

我正在寻找鼠标悬停声音脚本(用于按钮)。 我计划使用 wav 声音,但它可以是另一种声音格式。

我在网上找到的那些与新浏览器版本不兼容。 我特别需要它在 Firefox 中工作。

我在 Jquery 网站上找到了一个,但它需要 Flash。

如果可能的话,我更喜欢只使用 javascript。

I'm looking for a a mouseover sound script (for button).
I plan to use wav sound but it can be another sound format.

Those I have found on the net are not compatible with new browser version.
I especially it need to work in Firefox.

I have found one on Jquery site but it requires Flash.

I prefer using only javascript if possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦初启 2024-08-28 11:08:08

抱歉,JavaScript 无法播放声音。您会发现使用 Flash 是最简单的,因为它通常安装在浏览器中。 JavaScript 可以通过 ExternalInterface ActionScript API 与 SWF 进行交互。

Sorry, but JavaScript cannot play sound. You'll find it easiest to work with Flash since it's so commonly installed in browsers. JavaScript can interact with SWFs through the ExternalInterface ActionScript API.

初懵 2024-08-28 11:08:08

您可以尝试这样的操作:

<script type="text/javascript">
function EvalSound(soundobj) {
var thissound=document.getElementById(soundobj);
thissound.Play();
}
</script>
<embed src="mysound.wav" autostart=false width=0 height=0 id="mysound" enablejavascript="true">

然后,要在鼠标悬停在链接上时播放,请添加代码:

<a href="#" onMouseOver="EvalSound('mysound')">Move mouse here</A>

You can try something like this:

<script type="text/javascript">
function EvalSound(soundobj) {
var thissound=document.getElementById(soundobj);
thissound.Play();
}
</script>
<embed src="mysound.wav" autostart=false width=0 height=0 id="mysound" enablejavascript="true">

Then, to play on mouseover of a link, add the code:

<a href="#" onMouseOver="EvalSound('mysound')">Move mouse here</A>
怂人 2024-08-28 11:08:08

我无法找到让它在 Firefox 下运行的方法,所以我最后决定使用 Flash。

I was not able to find a way to make it work under Firefox, so I decide to use Flash at the end.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文