-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (61 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emojiiiiiiiis</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style>
body{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
canvas {
/* border: 2px solid black;*/
}
#num-lines {
width: 35px;
}
.gridDisplay {
max-width: 400px;
margin: 20px auto;
display: flex;
justify-content: center;
}
.gridDisplay div{
width: 25px;
height: 25px;
border: 1px solid black;
}
.copyBox {
border: 1px solid black;
width: 250px;
overflow-x: scroll;
}
</style>
</head>
<body>
<h3>Palette</h3>
<div id="palette" class="gridDisplay">
</div>
<h3>Selected</h3>
<div id="selected" class="gridDisplay">
</div>
<canvas id="canvas" width=408 height=408>
If you are reading this message, it means that either your browser doesn't support HTML5 Canvas or you have JavaScript disabled.
Try enabling JavaScript and refresh your browser.
</canvas>
<!-- <h3>Emojis</h3>
<pre id="code"></pre> -->
<h3>Actions</h3>
<div id="btns" class="gridDisplay">
<button id="copySingleString">Single Text String</button>
<button id="copyMultiLineString">Multiline Text String</button>
<button id="copyJavascript">Javascript for Discord</button>
<button id="copyShareUrl">Share Link</button>
<!-- <button id="copyCURL">cUrl With Placeholders</button> -->
</div>
<script src="tata.js"></script>
<script src="pixels.js"></script>
</body>
</html>