-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
92 lines (86 loc) · 3.69 KB
/
Copy pathmap.html
File metadata and controls
92 lines (86 loc) · 3.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Map</title>
<link rel="stylesheet" href="https:/stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="newCSS.css" type="text/css" />
</head>
<body>
<div class="container" style="margin-top:10%">
<div class="row">
<div class="col-12">
<br>
<button id="roomName" type="button">1210a - Evan Golub</button>
</div> <!-- end col-->
</div> <!-- end row-->
<br>
<!-- put in floor buttons here -->
<div class="row">
<div class="col-4 d-flex justify-content-center">
<br>
<button class="floorName" id="groundFloor" type="button">Ground Floor</button>
</div> <!-- end col-->
<div class="col-2"></div>
<div class="col-6 d-flex justify-content-center">
<br>
<button class="floorName" id="firstFloor" type="button">Floor 1</button>
</div> <!-- end col-->
</div> <!-- end row-->
<!-- put in written directions here -->
<div class="row">
<div class="col-6 ">
<p class="writtenDirections" id="groundFloorDirections1">Go straight towards the main staircase or elevator.</p>
<p class="writtenDirections" id="groundFloorDirections2">Go up to Floor 1.</p>
</div> <!-- end col-->
<div class="col-6 d-flex justify-content-center">
<p class="writtenDirections" id="FirstFloorDirections">Make a right then a left.</p>
</div> <!-- end col-->
</div> <!-- end row-->
<!-- put in video directions here -->
<div class="row">
<div class="col-6">
<!-- <iframe width="420" height="315" class="Map" id="leftMap"
src="videos/MakerSpaceLeftMap.mov">
</iframe> -->
<video type="video/mov" autoplay loop muted preload class="Map" id="leftMap"
name="Video Name" src="videos/leftMapWalkToGolub.mov">
</video>
</div> <!-- end col-->
<div class="col-6 d-flex justify-content-center">
<video type="video/mov" autoplay loop muted preload class="Map" id="rightMap"
name="Video Name" src="videos/rightMapWalkToGolub.mov">
</video>
</div> <!-- end col-->
</div> <!-- end row-->
<!-- bottom Buttons -->
<div class="row">
<div class="col d-flex justify-content-center">
<button id="back" class="bottomButtons" onclick="window.history.go(-1)">
<span class="glyphicon glyphicon-arrow-left" alt="<"></span>
</button>
<button id="home" class="bottomButtons" onclick="window.location='index.html'">
<a href="index.html"></a>
<span class="glyphicon glyphicon-home" alt="<"></span>
</button>
<button id="forward" class="bottomButtons" onclick="window.history.forward()">
<span class="glyphicon glyphicon-arrow-right" alt="<"></span>
</button>
</div>
</div>
</div>
<script>
document.getElementById("home").onclick = function () {
location.href = "index.html";
};
document.getElementById("back").onclick = function () {
location.href = "directory.html";
};
document.getElementById("forward").onclick = function () {
location.href = "index.html";
};
</script>
</body>
</html>