寻找鼠标悬停声音脚本
我正在寻找鼠标悬停声音脚本(用于按钮)。 我计划使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
抱歉,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.您可以尝试这样的操作:
然后,要在鼠标悬停在链接上时播放,请添加代码:
You can try something like this:
Then, to play on mouseover of a link, add the code:
我无法找到让它在 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.