okvideo

Fullscreen background videos for your webpages.

  • 所有者: okfocus/okvideo
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

OKVideo

OKVideo is a jQuery plugin that allows for YouTube or Vimeo videos to be used as full-screen backgrounds on webpages. OKVideo aims to be customizable while making some basic decisions about how the plugin should control video. When using OKVideo, all videos will be served from Vimeo or YouTube based on a number of variables like browser, device, bandwidth, etc.

OKVideo uses the new YouTube IFrame API which does not require any Flash objects to be present on your website. This means that mobile devices will play video served by OKVideo. Content from Vimeo is served in a similar manner, although sometimes their videos will still be served in Flash.

Tested and working in Safari 5.1+, Chrome, Firefox 3.6+, IE 8+, Mobile Safari, Chrome for iOS.

Usage

After including jQuery and the OKVideo plugin, instantiate OKVideo like so:


$(function(){
  $.okvideo({ video: '[:id]' }) // [:id] refers to a YouTube or Vimeo ID
});

OKVideo conveniently will accept and parse full urls from YouTube or Vimeo:


$(function(){
  $.okvideo({ video: '[:url]' }) // [:url] refers to a YouTube or Vimeo URL
});

Want a YouTube playlist? I got u.


$(function(){
  $.okvideo({ playlist: {
                list: '[:id]', // a YT playlist id
                suggestedQuality: '[:quality]'
              }
           });
});

OKVideo accepts a number of options. The below will embed a high definition video from YouTube with the audio set to 50% and log something to the console once the video has completed:


$(function(){
  $.okvideo({
      source: '[:url]',
      volume: 50,
      hd: true,
      onFinished: function(){
          console.log('finished video!')
      }
  });
});

You can also simply pass an id or url if no other options are desired:


$(function(){
  $.okvideo('[:url]') // [:url] refers to a YouTube or Vimeo URL
});

YouTube API Access

OKVideo gives you access to all of the YouTube player events. You can listen for all of the available player states: unstarted, ended, playing, paused, buffering, and cued. To listen for them simply pass OKVideo a function to the corresponding option noted below.

Options

Tests

OKFocus tests with Jasmine. Once you've cloned the repo run bundle and then rake jasmine to test the source.

主要指標

概覽
名稱與所有者okfocus/okvideo
主編程語言JavaScript
編程語言Ruby (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2012-04-28 00:11:09
推送於2021-07-08 14:18:44
最后一次提交2015-02-16 12:47:22
發布數15
最新版本名稱v2.3.3 (發布於 2014-07-10 18:16:15)
第一版名稱1.0 (發布於 )
用户参与
星數365
關注者數16
派生數77
提交數71
已啟用問題?
問題數0
打開的問題數0
拉請求數5
打開的拉請求數5
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?