-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (28 loc) · 902 Bytes
/
index.html
File metadata and controls
executable file
·28 lines (28 loc) · 902 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<title>sequence 0.2</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://cdn.popcornjs.org/code/dist/popcorn.min.js"></script>
<script src="manifest.js"></script>
<script src="sequencer.js"></script>
<style type="text/css">
body { font-family: sans-serif; background: #333; color: #ff9;}
#videoplayer {
width: 854px; height: 480px; background: white;
-webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .3);
box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .3);
}
video { margin: auto; height: 100%; }
#container { position: relative; width: 100%; }
#course { margin-top: 20px; }
</style>
</head>
<body>
<section id="container">
<section id="videoplayer"></section>
<section id="course"></section>
<section id="description"></section>
</section>
</body>
</html>