forked from twitter/twemoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreview-template.html
47 lines (47 loc) · 1.16 KB
/
preview-template.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Twitter Emoji (Twemoji) Preview</title>
<style>
ul.emoji-list * {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
ul.emoji-list li {
font-size: 36px;
float: left;
display: inline-block;
padding: 2px;
margin: 4px;
}
img.emoji {
cursor: pointer;
height: 1em;
width: 1em;
margin: 0 .05em 0 .1em;
vertical-align: -0.1em;
}
</style>
<script src="//twemoji.maxcdn.com/twemoji.min.js"></script>
</head>
<body>
<ul class="emoji-list">
{{emoji-list}}
</ul>
<script>
twemoji.parse(document.getElementsByTagName('ul')[0], {size: 72});
(function (img, metaKey, i) {
function copyToClipboard(e) {
prompt('Copy to clipboard via ' + metaKey + '+C and Enter', this.alt);
}
for (i = 0; i < img.length; img[i++].onclick = copyToClipboard) {}
}(
document.getElementsByTagName('img'),
/\b(?:Mac |i)OS\b/i.test(navigator.userAgent) ? 'Command' : 'Ctrl'
));
</script>
</body>
</html>