如何在后台播放网页中的声音文件?
HTML <audio>元素用于将音频添加到网页。要在网页的后台播放声音文件,请使用<embed>…</ embed>元素。另外,使用自动播放属性。每当页面加载时,它将在后台运行音乐。
以播放器隐藏在网页上的方式设置宽度和高度。添加了loop属性以指定是否重新开始播放音频。
您可以尝试运行以下代码在后台的网页中播放声音文件
示例
<!DOCTYPE html><html>
<head>
<title>HTML background music</title>
</head>
<body>
<p>The music is running in the background.</p>
<p>(Song: Kalimba which is provided as a Sample Music in Windows)</p>
<embed src="/html/Kalimba.mp3" loop="true" autostart="true" width="2"
height="0">
</body>
</html>
以上是 如何在后台播放网页中的声音文件? 的全部内容, 来源链接: utcz.com/z/360518.html