0

I'm trying to make my first video background and found this tubular plugin. when i follow the step, it seems that adding the code in body gets complicated. I added the jquery link and for some reason the code i added is not valid. can anyone help me how tomake this plugin work?

This is the instruction im trying to follow: https://code.google.com/p/jquery-tubular/

Thank you in advance!

here is my code:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Using Tubular Plugin</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"         type="text/javascript"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery.tubular.1.0.js"></script>
<style type="text/css">
body,html { margin:0; padding::0; height:100%; width:100%;}
#topSection {
background-color: #D8D8D8;
height:100%;
min-height:100%;
width:100&;
position:relative;

}
</style>
</head>
<body>
 $().ready(function() {
            $('#wrapper').tubular({videoId: 'idOfYourVideo'}); // where idOfYourVideo is the YouTube ID.
    });
<section id="topSection">Top section- I need a youtube video background     here</section>
</body>
</html>
John Slegers
  • 45,213
  • 22
  • 199
  • 169
akoito
  • 503
  • 1
  • 4
  • 11

1 Answers1

0

Hi Have you tryed calling jQuery from head. You should add a piece of code like:

<script>
$("document").ready(function() {
  var options = {  videoId: "xp-8HysWkxw", // where idOfYourVideo is the YouTube ID.
                   start: 0, 
                   repeat: true
                };    
$("#page").tubular(options); // Here is the jQuery call
});
</script>
isaiso
  • 1