我正在尝试用html 5构建一个响应式音频流播放器。我已经实现了闪存的后备解决方案,以保持与浏览器兼容的东西,但是在设置播放器样式时我遇到了麻烦。 / p>
html 5音频播放器的标准示例是:
<audio id="audio" preload="auto" controls style="width:100%;">
我喜欢这种方式编码时html 5音频播放器的标准控件如何显示,但由于我的播放器仅用于直播,我不想拥有标准进度条,只需播放/暂停,音量和静音。
是否有可能以某种方式停用audio-tag的进度条功能?到目前为止我找到的唯一解决方案是编写html中的每个按钮并使用css进行样式设置。这将花费更多的时间。
我很感谢每一个提示,最好的问候,
塞巴斯蒂安
答案 0 :(得分:0)
使用以下代码:希望对您有用
<html>
<body>
<audio id="player" src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.mp4"></audio>
<div>
<button onclick="document.getElementById('player').play()">
<img src="http://icons.iconarchive.com/icons/icons-land/play-stop-pause/48/Play-Normal-icon.png"/>
</button>
<button onclick="document.getElementById('player').pause()">
<img src="http://icons.iconarchive.com/icons/custom-icon-design/pretty-office-8/48/Pause-icon.png"/>
</button>
<button onclick="document.getElementById('player').volume+=0.1">
<img src="https://cdn2.iconfinder.com/data/icons/perfect-flat-icons-2/48/Volume_sound_audio_speaker_music_off_high.png"/>
</button>
<button onclick="document.getElementById('player').volume-=0.1">
<img src="https://cdn2.iconfinder.com/data/icons/perfect-flat-icons-2/48/Volume_down_arrow_download_up.png"/>
</button>
</div>
</body>
</html>
如果你想添加背景等,请在
<div>
添加样式。
跳跃它将适合您的目的