-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
72 lines (68 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>xBoard</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/jquery-ui-1.8.19.custom.css" />
<link rel="stylesheet" type="text/css" href="css/colorpicker.css" />
<script src="js/libs/jquery-1.7.2.min.js" type="application/javascript"></script>
<script src="js/libs/jquery-ui-1.8.19.custom.min.js" type="application/javascript"></script>
<script src="js/xboard.js" type="application/javascript"></script>
<script src="js/xboardui.js" type="application/javascript"></script>
<script src="js/libs/colorpicker.js" type="text/javascript"></script>
<script src="js/libs/cjson.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10099865-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<body>
<div id="xboard-container">
<div id="top-row" class="clearfix">
<div id="drawsection">
<canvas id="canvas">
</canvas>
<div id="loader"></div>
</div><!-- /drawsection -->
<div class="recording_elt" id="tools">
<input id="button_pencil" class="drawing_tool" title="Pencil" type="button"></input>
<input id="button_eraser" class="drawing_tool" title="Eraser" type="button"></input>
<input id="button_clear" title="Clear Canvas" type="button"></input>
<div title="Pick a Color"><input id="color_picker" type="text" value="#000000"/></div>
</div> <!-- /tools -->
</div>
<div id="bottom-row">
<div id="slider_container">
<div class="clearfix" id="slider">
</div>
</div>
<div id="controls" class="clearfix">
<button id="play_pause" class="">
</button>
<div id="elapsed_timer" class="timing">0:00</div>
<div id="time_separator" class="timing">/</div>
<div id="total_timer" class="timing">0:00</div>
<button id="recorder" class="recording_elt" title="Record"></button>
</div>
</div>
</div>
</div> <!-- /container -->
<br /><br />
<div style="padding-left: 15px">
<font size="5">xBoard: a Recordable HTML5 Canvas Based Virtual Whiteboard.</font><br />
Click the red button and click the pencil to start recording and drawing.<br />
Optimized for Chrome. <br />
<br />
<a href="http://github.com/eipark/xboard">Project on GitHub</a>
<br /><br />
Visit <a href="embed.html">embed.html</a> to see how xBoard looks when embedded on a page.
</body>
</html>