-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslide4.html
42 lines (42 loc) · 1.17 KB
/
slide4.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
<!DOCTYPE html>
<html>
<head>
<title>screen1.1</title>
<style type="text/css">
body {
margin: 0 0;
padding: 0 0;
text-align: center;
color: white;
background-color: black;
}
</style>
</head>
<body>
<video width="33%" autoplay loop style="float: left">
<source src="res/multiple_screens.mov" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<video width="33%" autoplay loop style="float: left">
<source src="res/multiple_screens.mov" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<video width="33%" autoplay loop style="float: left">
<source src="res/multiple_screens.mov" type="video/mp4">
Your browser does not support HTML5 video.
</video>
</body>
<footer>
<script type="text/javascript">
document.body.addEventListener("keydown", function (event) {
var location = window.location.protocol + "//" + window.location.hostname + ":" +window.location.port;
if (event.which === 39) {
window.location.href = location + '/' + "slide5.html";
}
else if (event.which === 37) {
window.location.href = location + '/' + "slide3.1.html";
}
});
</script>
</footer>
</html>