-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
69 lines (61 loc) · 2.5 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--load our webfont -->
<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/controls.css">
<link rel="stylesheet" type="text/css" href="css/controls_dark.css">
<script src="js/thirdparty/jquerymin.js"></script>
<script src="js/thirdparty/popcorn.js"></script>
<script src="js/thirdparty/screenFull.js"></script>
<script src="js/datadocs/utils.js"></script>
<script src="js/datadocs/popcorn_plugins/popcorn.salt.js"></script>
<script src="js/datadocs/popcorn_plugins/popcorn.caramel.js"></script>
<script src="js/datadocs/customcontrols.js"></script>
<script src="js/datadocs/datadoc.js"></script>
<script src="main.js"></script>
<title>Data Docs</title>
</head>
<body>
<div id="contentContainer">
<div id="all_info">
<div id="loader_gif">
<img src="assets/graphElements/712.GIF" />
</div>
<video id="datadocsvid" poster="assets/graphElements/poster.png" style="width:100%; height:100%;">
<source src="assets/videoFiles/DataDoc1_MAINSEQ_v4.mp4" type="video/mp4">
<source type="video/ogg" src="assets/videoFiles/DataDoc1_MAINSEQ_v4.ogv">
<source type="video/webm" src="assets/videoFiles/DataDoc1_MAINSEQ_v4.webm">
</video>
<div id="overlays"></div>
<div id="custom_controls">
<div id="embed_code">
</div>
<div id="play_pause_button"></div>
<div id="scrubber">
<div id="progress_bkgrnd">
<div id="progress"></div>
</div>
</div>
<div id="time_count"><div id="time_text"></div></div>
<div id="embed_button"><div id="share_text"></div></div>
<div id="fullscreen_button"></div>
</div>
</div>
</div>
<script>
//if this page is embedded, correct the positioning of our main elements
if(window != window.parent){
var theContent = document.getElementById("contentContainer");
theContent.style.position = "absolute";
theContent.style.top = "0px";
theContent.style.left = "0px";
var theInfo = document.getElementById("all_info");
theInfo.style.position = "absolute";
}
</script>
</body>
</html>