-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 977 Bytes
/
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="./jquery.mousewheel.js"></script>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="Stylesheet" type="text/css" href="colorpicker/css/colorpicker.css" />
<title>Pixdraw</title>
</head>
<body>
<canvas id="pixdraw"></canvas>
<div id="toolbar">
<button id="fore"></button>
<button id="back"></button>
<button id="mover">m</button>
<button id="drawer">d</button>
<button id="eraser">e</button>
<button id="undo">u</button>
<button id="redo">r</button>
<button id="toggle-grid">g</button>
<button id="share">share</button>
</div>
<script type="text/javascript" src="./colorpicker/js/bootstrap-colorpicker.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>