-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Drawing Room</title>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="lib/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="lib/modernizr.custom.54495.js"></script>
<script src="lib/miniColors/js/minicolors.js"></script>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" href="lib/miniColors/css/miniColors.css" />
<script type="text/javascript" src="client.js"></script>
</head>
<body>
<div id="cursors">
</div>
<div id="conversation-content">
<div id="conversation"></div>
<input id="data"/>
<input type="button" id="datasend" value="send" />
</div>
<div id="toolbox">
<input type="minicolors" name="color" id="color-selector" value="#00cc00"></input>
<input type="button" id="pencil" value="pencil" />
<!--<input type="button" id="crayon" value="crayon" />-->
<input type="button" id="brush" value="brush" />
<input type="button" id="clear" value="clear" />
<input type="button" id="eraser" value="eraser" />
<input type="button" id="save" value="save" />
<input id="width" value="1"/>
</div>
<canvas id="paper" width="1900" height="1000">
</canvas>
</body>
</html>