首页 > 解决方案 > 隐藏的音频文件不播放

问题描述

我正在尝试在 html 中插入音频文件,但如果我将其设置为隐藏,它就不会播放。

<audio src="file/example.ogg" autoplay="true" hidden="true" loop="true" />

有任何想法吗?

标签: javascripthtmlcss

解决方案


只需尝试使用 CSSdisplay而不是hidden属性隐藏音频标签:

<audio src="file/example.ogg" autoplay="true" loop="true" />
audio {
    display: none;
}

注意:音频和视频标签只有在静音时才能自动播放。(因为用户隐私)

<audio src="file/example.ogg" autoplay="true" hidden="true" loop="true" muted="true" />

推荐阅读