-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 2.31 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 2.31 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Scribble - gnuheidix.de</title>
<meta name="description" content="Ein Mehrbenutzer-Kritzelbrett, welches als Technologiedemo von PubSub via node.js dienen soll. Es setzt socket.io ein." />
<meta name="author" content="Thomas Heidrich" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header nav" id="oben">
<ul>
<li>
<a href="/" title="Ein Mehrbenutzer-Kritzelbrett, welches als Technologiedemo von PubSub via node.js dienen soll. Es setzt socket.io ein.">Scribble - Kritzelbrett</a>
</li>
<li>
<input id="picker" maxlength=0 class="color {pickerMode:'HVS', slider:false, valueElement:'farbe', pickerFaceColor:'transparent', pickerFace:0, pickerBorder:0, pickerInsetColor:'black'}" readonly="readonly" />
<input id="farbe" type="hidden" value="FF0000" />
</li>
<li>
<input id="pngexport" type="button" value="Export" />
</li>
<li>
<select id="werkzeug">
<optgroup label="Pinsel">
<option value="0">dünn</option>
<option value="1">mittel</option>
<option value="2">dick</option>
</optgroup>
</select>
</li>
</ul>
</div>
<div id="maincontent">
<canvas id="helperlayer">
</canvas>
<canvas id="zeichenbrett">
<p>Dein Browser unterstützt kein HTML5-Canvas und deshalb kannst Du Scribble leider nicht benutzen.</p>
</canvas>
</div>
<div class="footer nav" id="unten">
<ul>
<li>
<input id="fadenkreuz" type="checkbox" />
<label for="fadenkreuz">Fadenkreuz</label>
</li>
<li><a href="https://github.com/gnuheidix/pubsub-scribble">github-Projekt</a></li>
<li><a href="http://gnuheidix.de/">gnuheidix</a></li>
<li><a href="http://gnuheidix.de/pages/impressum.html">Impressum</a></li>
<li id="status"><span style="color:#FF0000;">getrennt</span></li>
</ul>
</div>
<script src="http://scribble.gnuheidix.de:8080/socket.io/socket.io.js"></script>
<script src="http://scribble.gnuheidix.de/jscolor/jscolor.js"></script>
<script src="http://scribble.gnuheidix.de/client.js"></script>
</body>
</html>