在网站中添加声音
如何向网站添加声音。我不想在页面中显示 .swf 播放器。音乐应该在后台播放
How can I add sound to a web site . I don't want to show .swf player in the page .music should play in the background
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
标记,但请检查您感兴趣的所有浏览器是否支持该标记。如果不支持,您可以使用不可见的 swf。
但我建议您不要在网站中添加背景声音,这往往会很烦人。
You can use the
<audio>
tag, but check if that is supported in all browsers you are interested in. If not, you can use an invisible swf.But I'd recommend you not to putting background sound into the site, it tends to be really annoying.
在页面中隐藏放置 swf 对象的 div 元素。将显示状态设置为无而不是阻止。类似的东西:
Hide the div element inside which you put the swf object, in the page. Set the display state to none instead of block. Something Like :
它很旧但很有效。
在网页上播放声音的 9 个版本
我已经为 firefox 和 IE8 使用了版本 8“使用从 JavaScript 调用的 Java Applet”。
It's old but it works.
9 Versions to play a sound on a web page
I've used version 8 "Using a Java Applet called from JavaScript" for firefox and IE8.