1
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.

iPhoneでvideoタグにloopオプションを入れている場合、動画再生後にサムネイル表示に戻す方法

Posted at

やりたいこと

iPhoneではvideoタグをクリックすると別画面で動画が流れますが、
その後元のページに戻るとサムネイルではなく動画の画面が表示されてしまいます。

この時に動画の画面ではなくサムネイルを表示させる場合は下記の方法で対応できました。

対処法

$('video').on('pause',function(){
  $(this).load();     
});

上の方法では、videoタグにloopがある場合です。無い場合はpauseをendedにすることで、サムネイルを表示させることができました。

#参照

1
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
1
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?