-
Notifications
You must be signed in to change notification settings - Fork 1
/
board.html
187 lines (185 loc) · 4.33 KB
/
board.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="css/board.css" />
<link
rel="shortcut icon"
href="assets/favicon.svg"
type="image/svg+xml"
/>
<title>Board — Samutichev</title>
<meta name="description" content="Board — Samutichev" />
<script src="js/lib/simplify-svg-path.js" defer></script>
<script src="js/lib/simplify.js" defer></script>
<script src="js/lib/panzoom.js" defer></script>
<script src="js/pan-zoom.js" defer></script>
<script src="js/functions.js" defer></script>
<script src="js/settings.js" defer></script>
<script src="js/draw.js" defer></script>
<script src="js/panels.js" defer></script>
<script src="js/lib/svg-export.min.js" defer></script>
<script src="js/export.js" defer></script>
</head>
<body oncontextmenu="return false;">
<div id="background"></div>
<svg xmlns="http://www.w3.org/2000/svg" id="board">
<g id="scene" class="scene"></g>
</svg>
<div class="panels">
<div class="topPanel">
<button
type="button"
id="exit"
onclick="location.href='/'"
data-tooltip="Exit"
></button>
<button
type="button"
id="link"
onclick="copyLink()"
data-tooltip="Copy link"
></button>
<button
type="button"
id="download"
onclick="exportBoardAsSVG()"
data-tooltip="Export as SVG"
></button>
</div>
<div class="dockPanel">
<div class="main-tools">
<div class="tools">
<button
type="button"
id="pen"
class="active"
onclick="changeAction(this)"
data-tooltip="Pen"
></button>
<button
type="button"
id="eraser"
onclick="changeAction(this)"
data-tooltip="Eraser"
></button>
<button
type="button"
id="clear"
onclick="clearBoard()"
data-tooltip="Clear board"
></button>
</div>
<div class="tools">
<button
id="color"
onwheel="scrollColor(event)"
data-tooltip="Change pen color"
></button>
<button
id="size"
onwheel="scrollSize(event)"
data-tooltip="Change pen size"
></button>
<button
id="pattern"
onwheel="scrollPattern(event)"
data-tooltip="Change background"
></button>
</div>
</div>
<div
id="sizes"
class="tools settings"
onwheel="scrollSize(event)"
>
<button
id="small"
onclick="setBrush({size: 3})"
data-tooltip="Small"
></button>
<button
id="medium"
class="active"
onclick="setBrush({size: 4})"
data-tooltip="Medium"
></button>
<button
id="large"
onclick="setBrush({size: 5})"
data-tooltip="Large"
></button>
</div>
<div
id="colors"
class="tools settings"
onwheel="scrollColor(event)"
>
<button
id="black"
class="active"
onclick="setBrush({color: 'black'})"
data-tooltip="Black"
></button>
<button
id="red"
onclick="setBrush({color: '#d01919'})"
data-tooltip="Red"
></button>
<button
id="yellow"
onclick="setBrush({color: '#eaae00'})"
data-tooltip="Yellow"
></button>
<button
id="green"
onclick="setBrush({color: '#16ab39'})"
data-tooltip="Green"
></button>
<button
id="blue"
onclick="setBrush({color: '#1678c2'})"
data-tooltip="Blue"
></button>
<input
type="color"
id="colorInput"
data-tooltip="Color palette"
/>
</div>
<div
id="patterns"
class="tools settings"
onwheel="scrollPattern(event)"
>
<button
id="none"
class="active"
onclick="setPattern('none')"
data-tooltip="Empty"
></button>
<button
id="sq"
onclick="setPattern('sq')"
data-tooltip="Checkered"
></button>
<button
id="line"
onclick="setPattern('line')"
data-tooltip="Lined"
></button>
<button
id="dot"
onclick="setPattern('dot')"
data-tooltip="Dotted"
></button>
</div>
</div>
</div>
</body>
</html>