如何隐藏 HTML5 音频控件?
如何隐藏 HTML5 音频的浏览器特定控件?我正在制作缩略图来代表每个曲目和要播放/暂停的 JavaScript。
谢谢!
HTML:
<audio class="thumbnail" id="paparazzi" controls="none">
<source src="song.ogg" type="audio/ogg" />
<source src="../audio/fernando_garibay_paparazzisnlmix.mp3" type="audio/mpeg" />
Your browser does not support HTML5 audio.
</audio>
How can I hide HTML5 audio's browser specific controls? I'm making thumbnail images to represent each track and JavaScript to play/pause.
Thanks!
HTML:
<audio class="thumbnail" id="paparazzi" controls="none">
<source src="song.ogg" type="audio/ogg" />
<source src="../audio/fernando_garibay_paparazzisnlmix.mp3" type="audio/mpeg" />
Your browser does not support HTML5 audio.
</audio>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
控件属性是一个布尔属性。这意味着如果指定了,controls 为 true,如果未指定,controls 为 false。
就有效性而言,如果您希望控件为真,可以通过以下方式指定它:
The controls attribute is a boolean attribute. This means that if it's specified, controls is true and if it's not specified, controls is false.
As far as validity goes, if you want controls to be true, you can specify it these ways:
根本不要指定
controls
属性,这应该会阻止它显示(我在 5 秒的谷歌搜索后得到了这个,不要引用我的话)。HTML5 视频 - 以编程方式显示/隐藏控件
Don't specify the
controls
attribute at all, this should stop it from showing (I got this after a 5 second google, don't quote me on it).HTML5 video - show/hide controls programmatically