注:学习笔记基于小甲鱼学习视频,官方论坛:https://fishc.com.cn/forum.php
官方资料
鱼C课程案例库:https://ilovefishc.com/html5/ html5速查手册:https://man.ilovefishc.com/html5/ css速查手册:https://man.ilovefishc.com/css3/
学习正文
audio标签:https://man.ilovefishc.com/pageHTML5/audio.html track标签:https://man.ilovefishc.com/pageHTML5/track.html
可以使用 audio 标签向浏览器嵌入音频:
<!DOCTYPE html>
<html>
<head>
<title>在网页中嵌入音频
</title>
<meta charset="utf-8">
</head>
<body>
<audio src="一分一秒.mp3" controls autoplay>
本视频无法播放……
</audio>
</body>
</html>
track 标签用于为 HTML5 的媒体文件添加字幕,需要一定的 VTT 语法知识,在此仅作了解,需要时再去学习。