Dieser Artikel stellt Ihnen die häufig verwendeten Multimedia-Tags in HTML und die neuen Multimedia-Tags in HTML5 vor. Ich hoffe, dass er Freunden in Not hilfreich sein wird!
HTML5 neue Multimedia-Tags
1: Video <video>
<video>
当前<video>元素支持三种视频格式:尽量使用MP4格式
浏览器 | MP4 | WebM | Ogg |
---|---|---|---|
IE | YES | NO | NO |
Chrome | YES | YES | YES |
Firefox | YES 从Firefox21版本开始Linux系统从Firefox 30开始 | YES | YES |
Safari | YES | NO | NO |
Opera | YES 从Opera25版本开始 | YES | YES |
<video controls="controls" autoplay="autoplay" muted="muted" width="500px" height="400px" loop="loop" poster="images/tudou.jpg" preload="none"> <source src="medio/mov_bbb.mp4"> <source src="medio/mov_bbb.ogg"> 您的浏览器暂不支持<video>标签播放视频</video>
视频<video>——常见属性
属性 | 值 | 描述 |
---|---|---|
autoplay | autoplay | 视频就绪自动播放(谷歌浏览器需添加muted来解决自动播放问题) |
controls | controls | 向用户显示播放控件 |
width | pixels(像素) | 设置播放器宽度 |
height | pixels(像素) | 播放器高度 |
loop | loop | 循环播放 |
src | url | 视频url地址 |
poster | imageurl | 加载等待的话面图片 |
muted | muted | 静音播放 |
二:音频<audio>
Browser | MP4 | WebM | Ogg |
---|---|---|---|
IE | JA | NEIN | NEIN |
Chrome | JA | JA | JA |
Firefox | JA startet ab Firefox21-Version Linux-System ab Firefox 30 | JA | JA |
Safari | JA | NEIN | NEIN |
Opera | JA ab Opera25-Version | JA | JA |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML5音频标签</title></head><body> <audio controls="controls" autoplay="autoplay" muted="muted" loop="loop"> <source src="medio/music.mp3" type="audio/mpeg"> 您的浏览器不支持audio元素</audio> </body> </html>
Eigenschaft | Wert | |
---|---|---|
Autoplay | Autoplay | |
Pixel (Pixel) | Spielerhöhe | |
Loop | src | |
Video-URL-Adresse | Poster | |
Lo Hinzufügen von Bildern wartender Wörter | stummgeschaltet |
Das obige ist der detaillierte Inhalt vonAusführliche Erklärung der neuen Multimedia-Tags in HTML5. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!