-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplayer4.htm
32 lines (26 loc) · 840 Bytes
/
player4.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html style="background-color: #111;">
<head>
<title>Touch-o-matic!</title>
<link rel="stylesheet" href="css/player.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="js/player.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(700, function() {
$(this).delay(59000).fadeOut(1000, function() {
window.location = 'index.htm'; });
});
});
</script>
</head>
<body>
<div class="playerwrap">
<video autoplay="autoplay" id="vid" style="margin:auto;">
<source src="videos/Video_ReefValue110819.ogv" type="video/ogg" />
</video>
</a>
</div>
</body>
</html>