-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
52 lines (52 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
html, body {
height: 100%;
width: 100%;
background: #eee;
}
</style>
<title>Emoji Physics</title>
</head>
<body>
<p>
<p>Emoji List:</p>
<textarea id="emoji-list" rows="12" cols="40">
😀💨👂👀👃👅👄👍👎👌👊✊
✌👋✋👐👆👇👉👈🙌🙏☝
👏💪🚶🏃💃👫👪👬👭💏💑
👯🙆🙅💁🙋💆💇💅👰🙎🙍
🙇🎩👑👒👟👞👡👠👢👕👔
👚👗🎽👖👘👙💼👜👝👛👓
🎀🌂💄💛💙💜💚❤💔💗💓
💕💖💞💘💌💋💍💎👤👥💬
</textarea>
</p>
<p>
<span>Input:</span>
<input id="input" value="😀💨👂👀👃👅">
</p>
<p>
<span>Font:</span>
<input id="font-input" value="">
</p>
<p>
<button id="add-button">Add</button>
<button id="random-button">Random</button>
<button id="clear-button">Clear</button>
</p>
<div id="world"></div>
<p>
<h3>Github:</h3>
<a href="https://github.com/yaegaki/emoji-physics">yaegaki/emoji-physics</a>
</p>
<script src="lib/opencv.js"></script>
<script src="lib/matter.js"></script>
<script src="main.js"></script>
</body>
</html>