-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclient.html
More file actions
21 lines (20 loc) · 810 Bytes
/
client.html
File metadata and controls
21 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/static/js/d3.v2.js"></script>
<script src="/static/js/client.js"></script>
<link href="/static/css/bubble.css" type="text/css" rel="stylesheet" />
<link href="/static/css/d3-style.css" type="text/css" rel="stylesheet" />
<style>
#chart {width:100%;height:600px;}
</style>
</head>
<body>
<h2 id="intro-message">The tweets are coming. I promise. It refreshes like every 10 seconds. Don't hit the refresh button. okay cool.</h2>
<h1 id="main-message" style="display:none;position:fixed;right:10%;font-size:300%;width:20%;font-weight:300;">What's hot on twitter today?</h1>
<div id="chart">
</div>
</body>
</html>