最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - How to auto play audio in iframe on iOS? - Stack Overflow

programmeradmin3浏览0评论

I have page with an iframe with allow="autoplay" and in the iframe, and audio element with the autoplay property. The user interacts with the parent page which loads the iframe src. I would expect the audio in the iframe to auto play since we have user interaction, and it in fact does in Chrome and Safari on MacOS, Windows, and Android but not on any iOS device, Safari or Chrome. Here's an example:

Parent

<html lang="en">
<head>
  <script>
    function loadIframe() {
      const iframe = document.querySelector('iframe');
      iframe.src = 'iframe.html';
    }
  </script>
</head>
<body>
  <iframe src="" allow="autoplay"></iframe>
  <button onClick="loadIframe()">Load Iframe</button>
</body>
</html>

iframe.html

<html lang="en">
<head></head>
<body>
  <audio src="test.mp3" autoplay></audio>
</body>
</html>

[update] I swear when I wrote this it worked in safari desktop, but now it doesn't :( Still works in every other browser.

I have page with an iframe with allow="autoplay" and in the iframe, and audio element with the autoplay property. The user interacts with the parent page which loads the iframe src. I would expect the audio in the iframe to auto play since we have user interaction, and it in fact does in Chrome and Safari on MacOS, Windows, and Android but not on any iOS device, Safari or Chrome. Here's an example:

Parent

<html lang="en">
<head>
  <script>
    function loadIframe() {
      const iframe = document.querySelector('iframe');
      iframe.src = 'iframe.html';
    }
  </script>
</head>
<body>
  <iframe src="" allow="autoplay"></iframe>
  <button onClick="loadIframe()">Load Iframe</button>
</body>
</html>

iframe.html

<html lang="en">
<head></head>
<body>
  <audio src="test.mp3" autoplay></audio>
</body>
</html>

[update] I swear when I wrote this it worked in safari desktop, but now it doesn't :( Still works in every other browser.

Share Improve this question edited 2 days ago Rooster242 asked 2 days ago Rooster242Rooster242 9163 gold badges11 silver badges19 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Use playsinline along with autoplay on iframe src as such:

<audio src="test.mp3" autoplay playsinline></audio>

citation: HTML5 Video autoplay on iPhone

发布评论

评论列表(0)

  1. 暂无评论