html iOS设备上的全屏背景视频幻灯片 - 注意目前使用jquery :)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html iOS设备上的全屏背景视频幻灯片 - 注意目前使用jquery :)相关的知识,希望对你有一定的参考价值。

window.__next_video = 0;

function playNextVideo() {
  if (window.__next_video === $('video').length) {
    window.__next_video = 0;
  }
  playVideoAtIndex(window.__next_video);
  window.__next_video++;
}

function playVideoAtIndex(index) {
  $('video').each(function(i, video) {
    var $vid = $(video);
    var vid = $vid[0];
    $vid.off('ended');
    $vid.fadeOut('fast');
    if (index === i) {
      vid.load();
      vid.play();
      $vid.fadeIn('fast');
      $vid.on('ended', playNextVideo);
    }
  });
}

playNextVideo();
{% for video in site.static_files %}
  {% if video.path contains 'img/videos' %}
    <video muted playsinline>
      <source src="{{ site.baseurl }}{{ video.path }}" type="video/mp4">
    </video>
  {% endif %}
{% endfor %}

以上是关于html iOS设备上的全屏背景视频幻灯片 - 注意目前使用jquery :)的主要内容,如果未能解决你的问题,请参考以下文章

带有视频元素的基于 Web 的全屏幻灯片

带封面图片的全屏背景 HTML5 视频

无 JS 的全屏 HTML5 视频背景

使用 HTML5 的全屏背景视频

webview上的Html5视频缺少棒棒糖上的全屏按钮

不使用 Flash 的全屏视频背景