JavaScripting

The definitive source of the best
JavaScript libraries, frameworks, and plugins.


  • ×

    Big Video.js

    The jQuery Plugin for Big Background Video (and Images)
    Filed under 

    • 🔾53%Overall
    • 2,258
    • 42.5 days
    • 🕩424
    • 👥16

    BigVideo.js

    ####The jQuery Plugin for Big Background Video (and Images) Learn how to use this plugin on its demo page.

    12-30-2015 Update

    This project is no longer under active development. Much has changed since the summer of 2012 when BigVideo.js was launched. For more current information on implementing video backgrounds, check out these links:

    If you are interested in taking over the project, ping me at @johnpolacek

    Installation

    If you're using Bower (and you should be!) installing BigVideo and its dependencies is simply:

    bower install BigVideo.js
    

    This downloads and installs BigVideo to the bower_components folder. Add to your page the usual way with script tags, or using RequireJS.

    If you'd rather download things manually, you can grab the latest zip from that lovely button on the right (or this link). You will also need the dependencies:

    Additionally, if you are using image functionality:

    Options

    The following are defaults on initialization:

        var BV = new $.BigVideo({
            // If you want to use a single mp4 source, set as true
            useFlashForFirefox:true,
            // If you are doing a playlist, the video won't play the first time
            // on a touchscreen unless the play event is attached to a user click
            forceAutoplay:false,
            controls:false,
            doLoop:false,
            container:$('body'),
            shrinkable:false
        });
    

    RequireJS

    If RequireJS is detected, BigVideo.js defines itself as an anonymous module. Require it as:

    require(['path/to/bigvideo'], function(bigvideo) {
        // do stuff here
    });
    

    Make sure your require config is set up correctly; an example configuration is as follows:

    require.config({
        paths: {
            "BigVideo": "bower_components/BigVideo.js/lib/bigvideo",
            "jquery": "bower_components/jquery/jquery",
            "jquery-ui": "bower_components/jquery-ui/ui/jquery-ui",
            "videojs": "bower_components/video.js/video",
            "imagesloaded": "bower_components/imagesloaded/imagesloaded",
            "eventEmitter/EventEmitter": "bower_components/eventEmitter/EventEmitter",
            "eventie/eventie": "bower_components/eventie/eventie"
        },
        shim: {
            "videojs": {exports: 'videojs'}
        }
    });
    

    This is to ensure that BigVideo and all its dependencies get the right paths, and that RequireJS knows how to reference Video.js.


    Created by John Polacek

    Follow @johnpolacek on Twitter


    The MIT License (MIT) Copyright © 2012 John Polacek

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Show All