如何在不借助 Flash 编程的情况下将声音合并到基于 Javascript 的网站中?
这个网站的一切都证实了我使用 javascript 而不是 flash 开发交互式网站的决定。但有一个问题,他们是如何将音效融入其中的?我检查了页面源代码,它不是 HTML5。
资料来源: nissanusa
Everything about this website affirms my decision to develop interactive websites with javascript and not flash. But one question though, how they do they incoporate sound effect into it? I check the page source and it's not HTML5.
Source: nissanusa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它实际上使用 SoundManager
SoundManager 2 可以轻松使用 Javascript 播放声音。通过包装和扩展 Flash 声音 API,SoundManager 2 为 Javascript 带来了可靠的音频功能。 它是如何工作的
更新,以防万一您想知道:
该网站使用的其他很酷的 js 库包括
It actually uses SoundManager
SoundManager 2 makes it easy to play sounds using Javascript. By wrapping and extending the Flash sound API, SoundManager 2 brings solid audio functionality to Javascript. How it works
update, just incase you were wondernig:
the other cool jslibraries the website makes use of include,
Sound Manager 2 类仍然扩展了 flash API,这是使用的一个很好的例子Flash 仅用于处理后端,前端负责处理声音。
尽管您正在走一条很好的道路,但不要尽可能地使用 Flash 开发交互式网站,但这是一个障碍。
The Sound Manager 2 class still extends over the flash API, It is a good example of using Flash only for handling the backend, the frontend doing the actual work with the sounds.
Albeit you're going on a good path to not develop interactive sites in Flash as you can, It's a hinderance.