初めてビデオの背景を作成しようとしていて、このチューブラー プラグインを見つけました。手順に従うと、本文にコードを追加すると複雑になるようです。jquery リンクを追加しましたが、何らかの理由で追加したコードが有効ではありません。このプラグインを機能させる方法を教えてくれる人はいますか?
これは私が従おうとしている命令です: https://code.google.com/p/jquery-tubular/
前もって感謝します!
ここに私のコードがあります:
<!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>