-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
56 lines (55 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="dofy.net & phpz.org" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta charset="UTF-8" />
<title>Apple Emoji</title>
<script src="script/jquery-2.1.4.min.js"></script>
<script src="script/main.js"></script>
<style>
body, input {
color: #666;
text-align: center;
font: 1.3em "courier new";
outline: none;
border: none;
}
a {
color: #ccc;
}
ul, li {
margin: 0;
padding: 5px 0;
list-style: none;
}
#search {
display: none;
}
.copyright {
margin: 30px;
font-size: 14px;
}
</style>
</head>
<body>
<p>
You can load the list by
<a href="javascript:void(Emoji.load('key'));">Key</a>
or
<a href="javascript:void(Emoji.load('emoji'));">Emoji</a>
.
</p>
<p>
<input id="search" size="11" placeholder="Search..." />
</p>
<ul id="output">
<li>
<img alt="logo" src="images/logo.png" width="128" />
</li>
</ul>
<p class="copyright">
copyright © 2015 dofy.net & phpz.org
</p>
</body>
</html>