• Stars
    star
    242
  • Rank 166,394 (Top 4 %)
  • Language
    JavaScript
  • Created over 13 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

PROJECT IS NOT MAINTAINED - <video> as background

jQuery - Background video plugin

Add a background video to your website…

Download

The full source can be downloaded from the master branch on GitHub (as a zip or gz) or installed via bower (bower install background-video).

Usage

Add the script to your homepage after jquery <script src="js/libs/jquery.backgroundvideo.min.js"></script>

And launch the plugin :

<script>
  $(document).ready(function() {
    var videobackground = new $.backgroundVideo($('body'), {
      "align": "centerXY",
      "width": 1280,
      "height": 720,
      "path": "media/",
      "filename": "cloud",
      "types": ["mp4","ogg","webm"],
      "preload": true,
      "autoplay": true,
      "loop": true
    });
  });
</script>

Examples

Check out the example folder.