如何制作一个无 Flash 的基本音频控制?
我需要制作一个基本的音频控件:一个音频文件、播放和暂停按钮,仅此而已。
我根本无法使用 Flash - 只有当客户端没有启用 Flash 时才会使用该网站。
HTML5 似乎不是一个好的解决方案,因为我的目标客户(不启用 Flash)很可能没有现代浏览器。更糟糕的是,Safari 似乎无法播放可用的最佳解决方案(jPlayer)。
I need to make a basic audio control: one audio file, play and pause buttons, no more.
I cannot use Flash at all - this website will only be used if the client does not have flash enabled.
HTML5 does not seem to be a good solution because my target clients (who do not enable Flash) most likely won't have modern browsers. Even worse, Safari does not seem to play the best solution available (jPlayer).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有主要浏览器(IE、Chrome、FF、Safari、Mobile Safari、Android)的最新版本都可以使用 HTML5
audio
元素本地播放音频(只要媒体以支持的格式编码) )。IE6、7和8只能借助插件(例如Quicktime、Flash等)在浏览器中直接播放音频。
因此,如果您使用的是 IE8 或更低版本,恐怕您无法在没有 Flash 或其他插件的情况下直接在浏览器中播放音频。
The lastest versions of all the main browsers (IE, Chrome, FF, Safari, Mobile Safari, Android) can play audio natively using the HTML5
audio
element (so long as the media is encoded in a supported format).IE6,7 and 8 can only play audio directly in the browser with the help of plugs-ins (e.g. Quicktime, Flash etc.).
So, if you have IE8 or less i'm afraid you cannot play audio directly in the browser without Flash or another plug-in.