目录
- 一、设置音频
- 二、设置视频
一、设置音频
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Document</title>
</head>
<body>
<!-- controls:控制播放暂停的按钮autoplay:自动播放loop:无限循环muted:静音-->
<audio controls autoplay loop muted><source src="西瓜JUN%20-%20起风了.mp3">
</audio>
</body>
</html>
二、设置视频
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Document</title>
</head>
<body>
<!--controls:控制播放暂停的按钮autoplay:自动播放loop:无限循环muted:静音poster:视频封面-->
<video width="500" height="300" controls autoplay loop muted poster="../img/111.png"><source src="4.26登录完成页面.mp4" >
</video>
</body>
</html>