Подскажите в чем может быть проблема? Заранее,спасибо
Сайт пример<!DOCTYPE html>
<html>
<head>
<title>***test</title>
<meta charset="UTF-8" />
<style type="text/css" media="screen">
body {
background:#000;
font-family:sans-serif;
margin:0px;
padding:0px;
}
.container {
text-align: center;
margin-top: 200px;
}
h1 {
text-transform: uppercase;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
</div>
<html>
<head>
<meta charset="utf-8">
<title>text-shadow</title>
<style>
.shadowtext {
text-shadow: 6px 6px 6px black, 0 0 1em black;
color: white;
font-size: 2em;
text-indent: 1.5em;
text-align: justify;
font-family: Impact;
}
</style>
</head>
</html>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="jquery.backgroundvideo.min.js"></script>
<script>
$(document).ready(function() {
var videobackground = new $.backgroundVideo($('body'), {
"align": "centerXY",
"width": 1280,
"height": 720,
"path": "video/",
"filename": "info",
"types": ["mp4","ogg","webm"],
"preload": true,
"autoplay": true,
"loop": true
});
});
</script>
</body>
</html>