-
Notifications
You must be signed in to change notification settings - Fork 0
/
week6.html
57 lines (52 loc) · 2.54 KB
/
week6.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Social Data - Week 6</title>
<script type="text/javascript" src="d3/d3.min.js"></script>
<link href="CSS/style.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="col-md-2" data-spy="affix" id="container" style="background-color: teal;">
<div id="header" style="text-align:center">
<img src="logo.png" style="width: 170px;height: 170px;margin-bottom: 10px;" />
<h3>Social Data - 2016</h3>
</div>
<div id="body">
<button type="button" class="btn btn-primary btn-block" class="nav_button" id="nav6">Week 6</button>
<button type="button" class="btn btn-primary btn-block" class="nav_button" id="nav7">Week 7</button>
<button type="button" class="btn btn-primary btn-block" class="nav_button" id="nav8">Week 8</button>
</div>
<div id="footer">
<p style="font-size: 20px;margin: 0;">Developed by: <br/> <span id="name">Nicolai Dahl, s113411</span> <br/> <span id="name">Christian Andersern, s113990</span>
</div>
</div>
<div class="visualization col-md-10" style="float: right;">
<div class="header">
<h1>Header summarizing visualization 1</h1>
</div>
<div class="description">
<h2>Description of visualization 1</h2>
<p>Text describing visualization 1. Assume that the reader hasn't read this exercise.</p>
</div>
<div class="graph">
<h2>Visualization 1</h2>
<div id="center" style="text-align: center;">
<div id="svg1"></div>
<svg width="240" height="200" id="second-SVG">
<rect x="0" y="120" width="80" height="80" stroke="gray" opacity="1" stroke-width="2" fill="purple"/>
<rect x="40" y="90" width="80" height="80" stroke="gray" opacity="0.8" stroke-width="2" fill="blue"/>
<rect x="80" y="60" width="80" height="80" stroke="gray" opacity="0.6" stroke-width="2" fill="green"/>
<rect x="120" y="30" width="80" height="80" stroke="gray" opacity="0.4" stroke-width="2" fill="yellow"/>
<rect x="160" y="0" width="80" height="80" stroke="gray" opacity="0.2" stroke-width="2" fill="red"/>
</svg>
</div>
</div>
</div>
<script type="text/javascript" src="Scripts/week6.js"></script>
<script type="text/javascript" src="Scripts/navigationButtons.js"></script>
</body>
</html>