forked from MicahRutrough/HackUCI2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
62 lines (57 loc) · 2.46 KB
/
graph.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
<!DOCTYPE html>
<html>
<head>
</head>
<title>MoodGraffr</title>
<script type="text/javascript" src = "jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="http://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Alegreya:700" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Josefin+Sans:700|Amatic+SC:700" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="graph_stylesheet.css">
<body>
<table id="graph_nav_header">
<tr>
<td>
<div class = "col-md-12">
<a class = "btn btn-default btn-lg graph-button" href = "../window.html"><i class="fa fa-line-chart" aria-hidden="true"></i>HOME</a>
</div>
</td>
<td style="width: 80%">
<div id="labelBox"><h3 style="color:#8361e2; display:inline;">Mood</h3><h3 style="display:inline;"> : </h3><h3 id="current_label" style="display:inline">Temperature</h3></div>
</td>
<td style="width: 20%">
<div id="drop_down">
<div class = "row">
<div class = "col-md-12">
<div id = "nav">
<div id="nav_wrapper">
<ul>
<li> <a href="#"><i class="fa fa-line-chart" aria-hidden="true"></i>Variables</a>
<ul>
<li><a href="#" id="but_temp"><i class="fa fa-thermometer-empty" aria-hidden="true"></i>Temperature</a>
</li>
<li><a href="#" id="but_ssn"><i class="fa fa-sun-o" aria-hidden="true"></i>Day Length</a>
</li>
<li><a href="#" id="but_aq"><i class="fa fa-skyatlas" aria-hidden="true"></i>Air Quality</a>
</li>
<li><a href="#" id="but_dist"><i class="fa fa-plane" aria-hidden="true"></i>Distance</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
<h1 id="warn" style = "font-family: times;"></h1>
<script type = "text/javascript" src="d3.v2.js"></script>
<script type = "text/javascript" src="pseudodata.js"></script>
<script type='text/javascript' src='graph_script.js'></script>
</body>
</html>