v2
Browse files- static/index.html +5 -2
static/index.html
CHANGED
@@ -7,9 +7,12 @@
|
|
7 |
<link rel="stylesheet" href="/style.css" />
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<
|
|
|
|
|
|
|
11 |
<div id="toolbar">
|
12 |
-
<input type="color" id="color-picker" value="#
|
13 |
<input type="range" id="size-slider" min="1" max="20" value="5" />
|
14 |
<button id="clear-btn">Clear</button>
|
15 |
</div>
|
|
|
7 |
<link rel="stylesheet" href="/style.css" />
|
8 |
</head>
|
9 |
<body>
|
10 |
+
<div id="canvas-container">
|
11 |
+
<canvas id="background-canvas"></canvas>
|
12 |
+
<canvas id="drawing-canvas"></canvas>
|
13 |
+
</div>
|
14 |
<div id="toolbar">
|
15 |
+
<input type="color" id="color-picker" value="#007400" />
|
16 |
<input type="range" id="size-slider" min="1" max="20" value="5" />
|
17 |
<button id="clear-btn">Clear</button>
|
18 |
</div>
|