-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcs448b.html
64 lines (57 loc) · 2.61 KB
/
cs448b.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
<!DOCTYPE html>
<html>
<head>
<title>CS448B Final Project</title>
<link href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/smoothness/jquery-ui.css' rel='stylesheet' type='text/css' />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
<script src='statics/jquery.blockUI.js' type='text/javascript'></script>
<script src="statics/d3.js" type="text/javascript"></script>
<script src='statics/database_interface.js' type='text/javascript'></script>
</head>
<body>
<div class="body">
<div class="content">
<h1 class='gallery'>Foobar newspaper topics</h1>
<div class='gallery' id='chart'>
<div id="chart-sidebar">
<div id="search-wrap">
<span class="ui-icon ui-icon-search search-sym" alt="delete"></span>
<input type="text" style="display:inline;" maxlength="17" id="search-box" />
<br/>
</div>
<div id="current-words-wrap">
<h4>Current Words</h4>
<ul id="current-words">
</ul>
</div>
<div id="topic-wrap">
<h4>Topics</h4>
</div>
<div id="radio-wrap">
<input type="radio" id="radio-freq" checked="checked" /><label for="radio-freq">Frequency</label>
<input type="radio" id="radio-related" /><label for="radio-related">Related</label>
</div>
</div>
</div>
<link href='statics/cs448b.css' rel='stylesheet' type='text/css' />
<script src='statics/d3.geo.js' type='text/javascript'></script>
<script src='statics/d3.geom.js' type='text/javascript'> </script>
<script src='statics/cs448b.js' type='text/javascript'> </script>
<div id="thank-yous-wrap">
<p class="thank-yous">There are a few things we should cite/thank:</p>
<ul class="thank-yous">
<li>Thank you Mike Bostock. We are using d3.js and the base css comes from that site.</li>
<li>ColorBrewer 2.0 -- Thank you for the color palettes.</li>
<li>Geoff</li>
<li> http://www.janwillemtulp.com/2011/03/23/tutorial-line-interpolations-in-d3/ </li>
</ul>
</div>
<div class="overlay" style="visibility:hidden;position: absolute;">
<p id="overlay-text">Bar</p>
</div>
</div>
</div>
</div>
</body>
</html>