-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (48 loc) · 2.86 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
<!DOCTYPE html>
<html>
<head>
<title>Fremont Bridge Bikes</title>
<link rel="stylesheet" media="all" href="assets/stylesheets/fbb.css"/>
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Fremont Bridge Bikes</h1>
<h2><span class="time"></span> on <span class="date"></span></h2>
</header>
<div class="bike-traffic">
</div>
<main>
<section class="bike-data">
<h2>Current</h2>
<p><img class="weather-icon"><span class="weather-desc"><Currently Unavailable></span></p>
<p>Temp: <span class="weather-temp"><Currently Unavailable></span></p>
<p>Wind Speed: <span class="weather-wind"><Currently Unavailable></span></p>
<h3>Bike Traffic</h3>
<p>Northbound: <span class="nb-rate"></span> bikes per hour</p>
<p>Soutbound: <span class="sb-rate"></span> bikes per hour</p>
</section>
<section class="config">
<h2>Config</h2>
<p>Select a new date: <input type="date" min="2012-10-03" value="" class="date-selector"></p>
<p><input type="number" class="timescale" min="1" max="60" value=""> seconds = 1 hour</p>
<p>1 <img src="assets/images/bikeIcon.svg" class="bike-icon"> = <input type="number" class="bikescale" min="1" value=""> bikes</p>
</section>
<section class="info">
<h2>What is this?</h2>
<p>A time lapse visualization of bikes traveling northbound and southbound on the Fremont Bridge in Seattle. The available data is from October 3, 2012 through (almost) present.</p>
<h3>Credits</h3>
<p>Bike icon (made by <a href="http://www.freepik.com" title="Freepik">Freepik</a>) is licensed under <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0</a>.</p>
<p><a href="https://data.seattle.gov/Transportation/Fremont-Bridge-Hourly-Bicycle">Fremont Bridge Bike data</a> from the <a href="https://data.seattle.gov/">City of Seattle</a> (powered by <a href="http://www.socrata.com/">Socrata</a>).</p>
<p><strike>Historical weather data from <a href="http://openweathermap.org/">OpenWeatherMap</a>.</strike></p>
<p>Interested in the source code? Click <a href="https://github.com/catchingash/fremont-bridge-bikes">here</a>!</p>
</section>
</main>
<script type="text/javascript" src="assets/jquery-2.1.4.min.js"></script>
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script> -->
<script type="text/javascript" src="assets/javascripts/BikeRepository.js"></script>
<script type="text/javascript" src="assets/javascripts/WeatherRepository.js"></script>
<script type="text/javascript" src="assets/javascripts/TimeHandler.js"></script>
<script type="text/javascript" src="assets/javascripts/fbb.js"></script>
</body>
</html>