2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iPad(iOS10.3)のsafariで音声ありで動画を自動再生させる(Webアプリとして起動した場合)

Last updated at Posted at 2017-08-22

通常は音声をmuteにした場合はinline再生が可能になりましたが
apple-mobile-web-app-capableを有効にしwebアプリとして起動した際は
muteにしなくても自動再生が可能でした。

以下のコードにて確認

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<video id="vid" autoplay="" autobuffer="" preload="auto" onclick="this.play()" webkit-playsinline="webkit-playsinline">
    <source src='main.mp4' type='video/mp4;'>
</video>
</body>
</html>
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?