-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathboard.html
More file actions
51 lines (44 loc) · 1.47 KB
/
Copy pathboard.html
File metadata and controls
51 lines (44 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Board</title>
<style>
<h1>Refresh page to get clear screen </h1>
#container { position: relative; }
#whiteboard { border: 1px solid #000; }
section {
position: absolute;
top: 10%;
}
div {
position: static;
left: 30%;
}
</style>
</head>
<body>
<div id="container"align="right">
<canvas id="whiteboard" width="720" height="480">
</canvas>
</div>
<div class="wrapper">
<section id="colorSwatch" align="left-top">
<input type="radio" name="color" id="color01" data-color="black" size="1" checked><label for="color01"></label>
<p>Black</p>
<input type="radio" name="color" id="color02" data-color="darkorange" size="1"> <label for="color02"></label>
<p>Orange</p>
<input type="radio" name="color" id="color03" data-color="navy" size="1"> <label for="color03"></label>
<p>Blue</p>
<input type="radio" name="color" id="color04" data-color="yellowgreen" size="1"> <label for="color04"></label>
<p>Green</p>
<input type="radio" name="color" id="color05" data-color="firebrick" size="1"> <label for="color05"></label>
<p>Red</p>
<input type="radio" name="color" id="eraser" data-color="white" size="4" ><label for="eraser"></label>
<p>Eraser</p>
</section>
</div>
<script src="https://cdn.pubnub.com/pubnub-3.15.2.min.js"></script>
<script src="https://kets99.github.io/White-Space/board.js"></script>
</body>
</html>