Opera 10 支持 html5 音频标签,但 Opera 11 吗?
我一直在从事一个 HTML5 项目,最近注意到 Opera 10.60 完美支持音频标签,但不支持最新版本的 Opera(版本 11.00 build 1156)。
您可以尝试使用 URL: http://moztw.org/demo/audioplayer/ 与 Opera 11.00。我可以毫无问题地看到音频播放器,但它只是不播放音乐。
我的 HTML 代码很简单:-
<audio controls src="media/vincent.ogg" type="audio/ogg"></audio>
I have been working on a HTML5 project and I recently noticed Opera 10.60 supports audio tag perfectly but not latest version of Opera (version 11.00 build 1156).
you may try with URL: http://moztw.org/demo/audioplayer/ with Opera 11.00. I can see the audio player without problem but it just doesn't play the music.
My HTML code is as simple as :-
<audio controls src="media/vincent.ogg" type="audio/ogg"></audio>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mac 版 Opera 11 存在一些与 CSS 和音频控制按钮相关的错误。
在某些情况下,会出现音频播放器,但控件将处于非活动状态。我见过当元素浮动或具有
display:block
样式时会发生这种情况。奇怪的是,如果您在元素上设置背景颜色或图像(
background:transparent
不会这样做),它应该可以工作。Opera 11 for Mac has a few bugs related to CSS and audio control buttons.
Under certain circumstances, the audio player will appear, but the controls will be inactive. I've seen it happen when the element is floated or has a
display:block
style.Oddly enough, if you set a background color or image on the element (
background: transparent
won't do it), it should work.