-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblankcanvas.html
48 lines (32 loc) · 1.08 KB
/
blankcanvas.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
<!DOCTYPE html>
<html>
<head>
<title>A Blank Canvas for testing</title>
<!-- CSS /-->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/blankcanvas.css" rel="stylesheet">
<!-- import JS files /-->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" media="all"/>
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- local JS files /-->
<script src="js/setup.js"></script>
<script src="js/ink.js"></script>
</head>
<body onload="load_page();">
<div class="container">
<div class="row">
<div class="span12" style="height:50px;"></div>
</div>
<div class="row">
<div id="canvasContainer" class="span9">
<canvas id="canvas" height="500" width="700"></canvas>
</div>
<div id="toolBox" class="span3">Tools</div>
</div>
<div id="dummyDiv">
<audio src="pencil1.wav" controls="controls"></audio>
</div>
</div>
</body>
</html>