-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (99 loc) · 4.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Primer</title>
<script src="js/js-video.js"> </script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/ui.css" />
<link rel="stylesheet" type="text/css" href="css/env.css" />
</head>
<body onload="start();">
<div id="tit">
<h1>Applied Statistics and Statistical Software</h1>
<h3>Course 02441 : Lasse Engbo Christiansen, IMM</h3>
</div>
<div id="main">
<!--<div id="display1" class="upVideoDisplay" style="float:left;
margin:0 30px 0 0;"></div>-->
<div id="display2" class="upVideoDisplay" style="float:left; margin:0;"></div>
<div id="related-videos">
<h3>Related videos</h3>
<div id="related-videos-links">
<a href="?vid=d2f57177-1a0c-4306-9e80-7311cc9352ed">
<div class="vidlink">
<img src="video/th/d2f57177-1a0c-4306-9e80-7311cc9352ed.jpg" class="vidthumb" />
<b>Applied Statistics and Statistical Software</b>
</div>
</a>
<a href="?vid=04bc13c5-7f10-4491-863e-048e18ae815d">
<div class="vidlink">
<img
src="video/th/04bc13c5-7f10-4491-863e-048e18ae815d.jpg" class="vidthumb" />
<b>Tool: Tablet PCs and Adobe Connect in Lectures</b>
</div>
</a>
<a href="?vid=87400dee-7868-463e-8780-7d7acef8bbc2">
<div class="vidlink">
<img src="video/th/87400dee-7868-463e-8780-7d7acef8bbc2.jpg" class="vidthumb" />
<b>Something going on in the British Channel</b>
</div>
</a>
<a href="?vid=068b0a6f-8b9d-4fcc-b2c4-426d9cba5ee3">
<div class="vidlink">
<img src="video/th/068b0a6f-8b9d-4fcc-b2c4-426d9cba5ee3.jpg" class="vidthumb" />
<b>Champagneglas ser på plancher</b>
</div>
</a>
<a href="?vid=22130921-cd9f-4072-a9df-0f20f7714bab">
<div class="vidlink">
<img
src="video/th/22130921-cd9f-4072-a9df-0f20f7714bab.jpg" class="vidthumb" />
<b>En lang video om ting og sager</b>
</div>
</a>
<a href="?vid=13416648-c7fc-4501-8fab-18383976a856">
<div class="vidlink">
<img
src="video/th/13416648-c7fc-4501-8fab-18383976a856.jpg" class="vidthumb" />
<b>Pæleramning</b>
</div>
</a>
<!--
<a href="?vid=068b0a6f-8b9d-4fcc-b2c4-426d9cba5ee3">068b0a6f</a><br />
<a href="?vid=0eb120c7-380d-4b6d-83ec-03083448d6cf">0eb120c7</a><br />
<a href="?vid=13416648-c7fc-4501-8fab-18383976a856">13416648</a><br />
<a href="?vid=22130921-cd9f-4072-a9df-0f20f7714bab">22130921</a><br />
<a href="?vid=2d8b1721-65b4-4f63-aa9f-7a88be835b40">2d8b1721</a><br />
-->
</div>
</div>
</div>
<script>
vid1 = null;
function start() {
var mainvid = getUrlVars()['vid'];
//ho = document.getElementById('display1');
//up = new upVideo();
//up.setup(ho);
//up.video.setSource('http://www.archive.org/download/UNIX1985/UNIX1985.ogv');
//up.setWidth(800);
ho2 = document.getElementById('display2');
up2 = new upVideo();
up2.setup(ho2);
up2.video.setSource(mainvid);
//up2.video.setSource('lol.m4v');
up2.setWidth(768);
}
// This function is not currently available in the UI, since the
// night mode is still lacking some elements
function toggle(el) {
var p = el.parentNode;
var state = (p.className === 'button')
p.className = state ? 'button toggle' : 'button';
document.body.className = state ? 'night' : '';
}
</script>
</body>
</html>