LoginSignup
10
19

More than 5 years have passed since last update.

iOSでvideoタグをinline再生する

Posted at

iOS上でvideoタグをフルスクリーンではなくinlineで再生したい場合がある。

  1. videoタグを再生ではなく、currentTimeを動かす→iPhone Safariで動画をインライン再生する方法
  2. iOS10の場合、videoタグにwebkit-autoplayesinlineとplaysinlineを指定する→ iOS 10 Safari から video の inline 再生が可能になります

2の場合

<video id="backgroundvideo" webkit-playsinline playsinline autoplay loop>
  <source src="./video.webm" type="video/webm">
  <source src="./video.mp4" type="video/mp4">
  <p>動画を再生できる環境ではありません。</p>
</video>

という風に2つ指定してあげて下さい。

10
19
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
10
19