-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_test.html
32 lines (32 loc) · 1.21 KB
/
index_test.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
<!DOCTYPE html>
<html lang="en">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/dragPalette.css" rel="stylesheet" type="text/css">
<link href="css/pointManager.css" rel="stylesheet" type="text/css">
<link href="css/picker.css" rel="stylesheet" type="text/css">
<link href="css/colorjoe.css" rel="stylesheet" type="text/css">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Draggy tiTus</title>
</head>
<body>
<div id="outerContainer">
<div id="dragPalette">
<div class="dragItem" id="point_0">
</div>
</div>
<div id="point-manager">
<button class="button plus"></button>
<button class="button minus"></button>
</div>
<div id="pickerContainer">
<div id="picker"></div>
</div>
</div>
</body>
<script src='dist/colorjoe/scale.fix.js'></script>
<script src='dist/colorjoe/colorjoe.js'></script>
<script src="js/script.js" type="module"></script>
</html>