HTML
HTML 音频(Audio)
下面的例子使用了两个不同的音频格式。HTML5 <audio> 元素会尝试以 mp3 或 ogg 来播放音频。如果失败,代码将回退尝试 <embed> 元素。
源代码:
点击运行 »
<audio controls height="100" width="100"> <source src="/examples/horse.mp3" type="audio/mpeg"> <source src="/examples/horse.ogg" type="audio/ogg"> <embed height="50" width="100" src="/examples/horse.mp3"> </audio>
运行结果:
点击运行 »