-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexplore.html
65 lines (56 loc) · 2.42 KB
/
explore.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BABS Data Challenge</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/colors.js"></script>
<header>
<h1>Bay Area Bike Share Data Challenge</h1>
<a href="explore.html">Explore</a> <a href="index.html">Home</a>
</header>
<div class="wrapper">
<div id="row1">
<div id="cityRadio">
<input type="radio" name="city" value="all" checked="true">All</input>
<input type="radio" name="city" value="sj">San Jose</input>
<input type="radio" name="city" value="rc">Redwood City</input>
<input type="radio" name="city" value="mv">Mountain View</input>
<input type="radio" name="city" value="pa">Palo Alto</input>
<input type="radio" name="city" value="sf">San Francisco</input>
</div>
<div id="focuschart"></div>
<ul class="ILL">
<li><input type="checkbox" id="avgCB">Show Average Rides</input></li>
<li><span id="reset">Reset</span></li>
</ul>
<ul class="ILL">
<li><input type="checkbox" id="weekendCB">Weekends</input></li>
<li><input type="checkbox" id="holidayCB">Holidays</input></li>
</ul>
<ul class="ILL">
<li><input type="checkbox" id="rainCB">Rain</input></li>
<li><input type="checkbox" id="tempCB">Temp</input></li>
</ul>
<ul class="ILL">
<li><input type="checkbox" id="49ersCB">49ers Game</input></li>
<li><input type="checkbox" id="giantsCB">Giants Game</input></li>
<li><input type="checkbox" id="sharksCB">Sharks Game</input></li>
</ul>
<ul class="ILL">
<li><input type="checkbox" id="americasCB">Americas Cup</input></li>
<li><input type="checkbox" id="bartCB">BART Strike</input></li>
<li><input type="checkbox" id="govCB">Government Shutdown</input></li>
</ul>
</div>
<hr />
<p>Click and drag on the bottom chart to choose a period of time to focus on.</p>
</div>
<footer>Made with <a href="http://www.d3js.org">D3</a> and <a href="http://www.openoffice.org/">Open Office</a>. Data from the <a href="http://bayareabikeshare.com/datachallenge">Bay Area Bike Share Data Challenge</a>.</footer>
<script src="js/explore.js"></script>
</body>
</html>