-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (76 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landscape</title>
<!--stylesheets -->
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/font-awesome.css">
<link rel="stylesheet" href="./css/custom.css">
<!--scripts defered-->
<script src="./js/jquery-3.2.1.min.js" defer ></script>
<script src="./js/popper.js" defer ></script>
<script src="./js/bootstrap.js" defer ></script>
<script src="./data/test.js" defer ></script>
<script src="./js/svgInteractions.js" defer ></script>
</head>
<body>
<div class="center-block" id="svgHere">
<!--<object id="start" data="./img/combo.svg" type="image/svg+xml" style="visibility:hidden" />-->
</div>
<div class="row header">
<div class="col-2 text-center topMenu">
<h4 class='pgTitle' id="titleBtn">dams & datums</h4>
</div>
<div class="col text-center topMenu">
<button type="button" class="btn btn-outline-secondary btn-block" id="homeBtn">about</button>
</div>
<div class="col text-center topMenu">
<button type="button" class="btn btn-outline-secondary btn-block" id="siteBtn">site</button>
</div>
<div class="col text-center">
<button type="button" class="btn btn-outline-secondary btn-block" id="iconBtn">flora . fauna . process</button>
</div>
<div class="col text-center">
<button type="button" class="btn btn-outline-secondary btn-block" id="programBtn">program</button>
</div>
<div class="col text-center">
<button type="button" class="btn btn-outline-secondary btn-block" id="seasonsBtn">seasons</button>
</div>
</div>
<div class="row footer">
<div class="col text-center pgMenu">
<h5 class='pgTitle'><span id="pgChoice">click top menu for </span> > options</h5>
</div>
</div>
<div class='imgTest'>
<img id="test" />
</div>
<!-- Right Modal: Contents to be dynamically updated-->
<div class="modal fade" id="rightModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog rightModal" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title eveleth" id="rightModalLabel">Modal title</h5>
</div>
<div class="modal-body" id="rightModalBody">
...
</div>
</div>
</div>
</div>
<!-- Bottom Modal: Contents to be dynamically updated-->
<div class="modal fade" id="bottomModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg bottomModal" role="document">
<div class="modal-content">
<div class="modal-header">
<h6 class="modal-title eveleth" id="bottomModalLabel">Dams & datums > about</h6>
</div>
<div class="modal-body" id="bottomModalBody">
...
</div>
</div>
</div>
</div>
</body>