亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

HTML5 Audio

HTML5 Audio(audio)

Audio on the Internet

Until now, there is still no such thing A standard designed to play audio on web pages.

Today, most audio is played through plug-ins (such as Flash). However, not all browsers have the same plugins.

HTML5 specifies a standard for embedding audio elements on web pages, using the <audio> element.

Browser support

Internet Explorer 9+, Firefox, Opera, Chrome, and Safari all support the <audio> element.

Note: Internet Explorer 8 and earlier IE versions do not support the <audio> element.

HTML5 Audio - How it works

To play audio in HTML5, you need to use The following code:

Example

<audio controls>
  <source src="音頻文件名稱" type="音頻文件格式">
  <source src="音頻文件名稱" type="音頻文件格式">
您的瀏覽器不支持 audio 元素。
</audio>

Audio format and browser support

Currently, the <audio> element supports three audio format files: MP3 , Wav and Ogg: NO ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

Chrome 6 + ????????????????????????????????????????????????????????????????? ?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

Safari 5+ yes yes no

#11 10+ yes yes yes yes yes

## Autoplay AutoPlay If the attribute appears, the audio will be played immediately after ready.

# Controls Controls If this attribute appears, it will display the control to the user, such as the play button.

Loop Loop If this attribute appears, it will start playback at the end of the audio.

Preload Preload If this attribute appears, the audio is loaded when the page is loaded, and it is prepared to play.

If you use "AutoPlay", ignore the attribute.

# SRC URL to play the audio URL.

Continuing Learning
||
<audio controls> <source src="音頻文件名稱" type="音頻文件格式"> <source src="音頻文件名稱" type="音頻文件格式"> 您的瀏覽器不支持 audio 元素。 </audio>
submitReset Code