-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
139 lines (122 loc) · 4.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<html>
<head>
<title>Data Visualization</title>
<link type="text/css" rel="stylesheet" media="all" href="css/stylesheet.css" />
<link type="text/css" rel="stylesheet" media="all" href="lib/jquery-ui/css/ui-lightness/jquery-ui-1.8.10.custom.css" />
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css' />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery-ui/js/jquery-ui-1.8.10.custom.min.js"></script>
<script type="text/javascript" src="lib/raphael/raphael-min.js"></script>
<script type="text/javascript" src="lib/raphael/g.raphael-min.js"></script>
<script type="text/javascript" src="lib/raphael/g.pie.js"></script>
<script type="text/javascript" src="lib/underscore/underscore-min.js"></script>
<script type="text/javascript">
jQuery(function () {
Application('#dvc-application');
$('#about-link').click(function () {
$('#about-content').show();
});
$('#about-hide').click(function () {
$('#about-content').hide();
});
});
</script>
<style type="text/css">
a,
a:visited,
a:active {
color : #222;
}
#wrapper {
text-align : center;
}
#footer {
font-size : 10px;
margin : 0px auto 24px auto;
text-align : right;
color : #222;
width : 780px;
padding : 4px 0px;
}
#license img {
vertical-align : middle;
}
#about {
text-align : left;
width : 750px;
margin : 0px auto;
position : relative;
z-index : 10001;
}
#about-link,
#about-hide {
right : 0px;
position : absolute;
text-decoration : underline;
cursor : pointer;
font-size : 10px;
}
#about-hide {
right : 10px;
top : 0px;
}
#about-content {
position : absolute;
z-index : 10001;
width : 280px;
background : #fff;
right : -120px;
padding : 10px;
font-size : 11px;
border : 1px solid #222;
border-top : 0px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="about">
<div id="about-nav"><a id="about-link">about</a></div>
<div id="about-content" style="display:none;">
<div id="about-hide"><a>hide /\</a></div>
<p>
This project was created for the <a href="http://datavizchallenge.org/">Data Viz Challenge</a>
by <a href="http://www.humblesoftware.com/">Humble Software Development</a>. The content on
this page is licensed under a <a href="http://creativecommons.org/licenses/by/3.0/">
Creative Commons Attribution 3.0 Unported License</a>. Source code for the project may be obtained
at <a href="https://github.com/HumbleSoftware/DataVisualization/">github</a> and is licensed under
the <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>.
</p>
</div>
</div>
<div id="dvc-application"></div>
<div id="footer">
<div id="license">
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by/3.0/80x15.png" /></a> Content on this page is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
</div>
<div id="notice">
This project was created for the <a href="http://datavizchallenge.org/">Data Viz Challenge</a> by <a href="http://www.humblesoftware.com/">Humble Software Development</a>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/Humble.js"></script>
<script type="text/javascript" src="js/Config.js"></script>
<script type="text/javascript" src="js/Model.js"></script>
<script type="text/javascript" src="js/DataSource.js"></script>
<script type="text/javascript" src="js/Sliders.js"></script>
<script type="text/javascript" src="js/Visual.js"></script>
<script type="text/javascript" src="js/DVC/BudgetVisualPie.js"></script>
<script type="text/javascript" src="js/DVC/BudgetVisualBlock.js"></script>
<script type="text/javascript" src="js/DVC/Splash.js"></script>
<script type="text/javascript" src="js/Controls.js"></script>
<script type="text/javascript" src="js/Dimension.js"></script>
<script type="text/javascript" src="js/Formatter.js"></script>
<script type="text/javascript" src="js/DVC/BudgetAccount.js"></script>
<script type="text/javascript" src="js/DVC/BudgetModel.js"></script>
<script type="text/javascript" src="js/DVC/BudgetAccountModel.js"></script>
<script type="text/javascript" src="js/DVC/BudgetAggregateModel.js"></script>
<script type="text/javascript" src="js/DVC/SpendingPie.js"></script>
<script type="text/javascript" src="js/DVC/BudgetPie.js"></script>
<script type="text/javascript" src="js/Application.js"></script>
</html>