This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
75 lines (69 loc) · 3.13 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
<!DOCTYPE html>
<html>
<head>
<title>Megamoji</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-21332781-18', 'auto');
ga('send', 'pageview');
</script>
<link href="images/fav.png" rel="shortcut icon">
<link href="assets/global.css" rel="stylesheet" type="text/css" />
<link href="assets/emoji.css" rel="stylesheet" type="text/css" />
<link href="assets/style.css" rel="stylesheet" type="text/css" />
<!-- - -->
<script src="assets/jquery.js" type="text/javascript"></script>
<script src="assets/emoji.js" type="text/javascript"></script>
<script src="assets/func.js" type="text/javascript"></script>
<!-- - -->
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta content="Megamoji Maker" property="og:title" />
<meta content="https://f.cloud.github.com/assets/1153134/1773595/df14deb8-67eb-11e3-8197-f7978d514309.png" property="og:image" />
<meta content="http://megamoji.muan.co" property="og:url" />
<meta content="Creating bigger, prettier, more exciting emoji." property="og:description" />
</head>
<body>
<div class="tools">
<div class="tool-set">
<label for="rows">Grid</label>
<input id="cols" class="js-grid-cols short" type="number" value="12">
x
<input id="rows" class="js-grid-rows short" type="number" value="12">
</div>
<div class="tool-set">
<label for="background">Background</label>
<input id="background" type="text" class="js-set-emoji-background js-auto-emoji">
or <input type="file" class="js-set-file-background inline" />
</div>
<div class="tool-set">
<label for="paint">
Emoji paint
<a href="#" class="js-bucketfy bucketfy"> ⬌</a>
</label>
<input id="paint" class="js-paint js-auto-emoji" type="text" value=":star:">
<div class="js-paint-preview paint-preview"></div>
</div>
<div class="tool-set">
<label>Done?</label>
<button class="js-output-script primary">Output script</button>
<button class="js-reset">Reset all</button>
<button class="js-preview">Preview</button>
</div>
</div>
<div class="js-grid grid">
</div>
<div class="facebox hidden">
<input name="script" id="emoji-script" type="radio" class="hidden" checked>
<input name="script" id="hubot-script" type="radio" class="hidden">
<label for="emoji-script" class="button e">Emoji text</label>
<label for="hubot-script" class="button h">Hubot Script</label>
<textarea class="js-hubot-script hubot-script"></textarea>
<textarea class="js-emoji-script emoji-script"></textarea>
</div>
<div class="backdrop hidden"></div>
</body>
</html>