-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·109 lines (92 loc) · 4.51 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>USE Visualisation</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" sizes="16x16 32x32" href="favicon.ico">
<!-- CSS concatenated and minified via ant build script-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/palette.scss">
<!-- end CSS-->
<script src="js/libs/modernizr-2.0.6.min.js"></script>
</head>
</head>
<body>
<aside>
<div class='my-legend'>
<div class='legend-scale'>
<ul class='legend-labels'>
<h4>Agreement on Q12:</h4>
<li><span style='background:#E64626;'></span>90%-100%</li>
<li><span style='background:#EA684E;'></span>80%-89%</li>
<li><span style='background:#EF8B77;'></span>70%-79%</li>
<li><span style='background:#F4AEA0;'></span>60%-69%</li>
<li><span style='background:#F8D0C8;'></span>50%-59%</li>
<li><span style='background:#ffebeb;'></span>40%-49%</li>
<li><span style='background:#d8e9fc;'></span>30%-39%</li>
<li><span style='background:#7bafd8;'></span>20%-29%</li>
<li><span style='background:#0078b2;'></span>10%-19%</li>
<li><span style='background:#215b7f;'></span>0%-9%</li>
<li><span style='background:#3C3E47;'></span>Excluded ( <5 students and <20% response )</li>
</ul>
</div>
</div>
</aside>
<div id="container" class="container">
<header>
<h1>Unit of Study Evaluation Visualisation
</h1>
<h2>Reflecting on Teaching in 2014</h2>
<hr>
<p><span class="description">This animated bubble chart displays agreement with Question 12 <i>(Overall I was satisfied with the quality of this unit of study)</i> and displays this with enrolment, year level, discipline and response rate information.</span></p><p><span class="description">The size of each bubble represents the number of students enrolled in the unit, large bubbles represent larger enrolment and vice versa. The colour represents agreement with Q12 (overall satisfaction).</span></p>
</header>
<div id="main" role="main">
<div class="alert alert-info" role="alert"><strong>Click</strong> each button to animate the dataset</div>
<div id="semester_selection" class="btn-group">
<a href="#" id="s1" class="btn active">Semester 1</a>
<a href="#" id="s2" class="btn">Semester 2</a>
<a href="#" id="2014" class="btn">All of 2014</a>
</div>
<div id="view_selection" class="btn-group">
<a href="#" id="all" class="btn active">Agreement</a>
<a href="#" id="class" class="btn">Class Size</a>
<a href="#" id="year" class="btn">Year Level</a>
<a href="#" id="discipline" class="btn">Discipline</a>
<a href="#" id="responserate" class="btn">Response Rate</a>
<br>
</div>
<div id="vis"></div>
</div>
<footer>
<p>© 2002-15 The University of Sydney, Faculty of Health Sciences</p>
</footer>
</div> <!--! end of #container -->
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> -->
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
<script defer src="js/plugins.js"></script>
<script defer src="js/script.js"></script>
<script src="js/CustomTooltip.js"></script>
<script src="js/libs/coffee-script.js"></script>
<script src="js/libs/d3.js"></script>
<script type="text/coffeescript" src="coffee/vis.coffee"></script>
<script>
window._gaq = [['_setAccount','UA-17355070-1'],['_trackPageview'],['_trackPageLoadTime']];
Modernizr.load({
load: ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js'
});
</script>
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>