HTML 5 <audio> controls 属性

实例

audio 元素:

<audio controls="controls">
  <source src="song.ogg" type="audio/ogg" />
  <source src="song.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>

controls 放控件。

  • 播放
  • 暂停
  • 定位
  • 音量
  • 全屏切换
  • 可用)
  • 可用)

HTML 4.01 与 HTML 5

controls 属性是 HTML 5 。

语法

<audio controls="controls" />