【问题标题】:HTML emble autostart="1" but can't automatically;HTML emble autostart="1" 但不能自动;
【发布时间】:2020-03-18 15:56:34
【问题描述】:

我想自动制作音乐,但它不起作用。 <embed src="music/1.mp3" autostart="1"> 我试过 autostart="true";

【问题讨论】:

标签: html css embed autostart


【解决方案1】:

政策更改后,Chrome 不允许自动播放嵌入音频。

Discussion about changes in Chrome

您可以做的是自动播放静音视频:

<video controls autoplay muted>
    <source src="music/1.mp3" type="audio/mp3">
</video>

您可以在此处找到更多解决方法: How to make audio autoplay on chrome

【讨论】:

    【解决方案2】:

    您不想在1true 周围加上引号。添加引号使它们成为字符串而不是布尔值。

    我建议考虑使用 html5 的 &lt;audio&gt; 元素。

    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio

    【讨论】:

      猜你喜欢
      • 2014-04-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-02-14
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多