-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (46 loc) · 1.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Traffic Simulation</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url(//fonts.googleapis.com/css?family=PT+Serif|PT+Serif:b|PT+Serif:i|PT+Sans|PT+Sans:b);
@import url(/css/main.css)
</style>
</head>
<body>
<!-- TODO: Gulp Replace Date -->
<header>
<aside>April 9, 2019</aside>
<a href="https://github.com/ramannanda/Traffic-Visualization" rel="author">Raman Nanda</a>
</header>
<h1>Web Traffic Visualization</h1>
<p>
Built out as a quick experiment to use D3.js and attempt to mock up a service-worker as a push server
</p>
<p>
Inspiration:
<ul>
<li><a href="https://github.com/larsvers/d3-hexgrid">D3 Hexgrid</a></li>
<li><a href="https://apps.sandstorm.io/app/4mfserfc04wtcevvgn0jw27hvwfntmt8j468y3ma55kj8d5tj9kh">Hummingbird</a></li>
</ul>
</p>
<div class="d3-graphic-full loading" id="container">
<div class="placeholder-16x9">
<div class="content">Loading...</div>
</div>
</div>
<!-- TODO: Gulp Replace Date -->
<footer>
<aside>April 9, 2019</aside>
<a href="https://github.com/ramannanda/Traffic-Visualization" rel="author">Raman Nanda</a>
</footer>
<script src="js/ext/lodash.min.js"></script>
<script src="js/ext/d3-hexgrid.min.js"></script>
<script src="js/ext/d3.min.js"></script>
<script src="js/ext/d3-geo-projection.min.js"></script>
<script src='js/ext/simple-statistics.min.js'></script>
<script src="js/app.js"></script>
</body>
</html>