-
Notifications
You must be signed in to change notification settings - Fork 0
/
steam.html
60 lines (55 loc) · 1.43 KB
/
steam.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>D3 inact</title>
<link rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/navbar.css" />
<link rel="author" href="humans.txt">
</head>
<style>
svg {
height: 500px;
width: 500px;
border: 1px solid gray;
}
line {
shape-rendering: crispEdges;
stroke: #000000;
}
line.minor {
stroke: #777777;
stroke-dasharray: 2,2;
}
path.domain {
fill: none;
stroke: black;
}
</style>
<body>
<div id="crouton">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="worldcup.html">worldcup</a></li>
<li><a href="charts.html">charts</a></li>
<li><a href="steam.html">steam</a></li>
<li><a href="map.html">map</a></li>
<li><a href="map2.html">map2</a></li>
<li><a href="map3.html">map3</a></li>
</ul>
</div>
<div class="row">
<div id="steam">
<svg style="width:500px;height:500px;"></svg>
</div>
<div id="steam2">
<svg style="width:500px;height:500px;"></svg>
</div>
</div>
<script src="js/d3.min.js"></script>
<script src="js/colorbrewer.min.js" type="text/JavaScript"></script>
<script src="js/movies.js"></script>
</body>
</html>