-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbots.html
More file actions
37 lines (37 loc) · 739 Bytes
/
bots.html
File metadata and controls
37 lines (37 loc) · 739 Bytes
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
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js" type="text/javascript"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="data.js"> </script>
<script type="text/javascript" src="bots.js"> </script>
<style>
* {
padding: 10;
margin: 0;
}
.annotation {
position: fixed;
left: 20px;
top: 20px;
font-size: 28px;
}
.message {
display: none;
position: fixed;
left: 1000px;
top: 200px;
background: yellow;
padding: 5px;
border: 2px solid black;
font-size: 28px;
}
.message.show {
display: block;
}
</style>
</head>
<body>
<div class="annotation"> </div>
<div class="message"> </div>
</body>
</html>