-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.79 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 1.79 KB
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
<!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" />
<title>Emotion Reader</title>
<link rel="stylesheet" href="src/css/style.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/icon" />
<link rel="icon" href="favicon.ico" type="image/icon" />
</head>
<body onload="main()">
<div class="container">
<h1>Emotion Reader</h1>
<canvas id="canvas" class="canvas" width="400"></canvas>
<div id="displacement"></div>
<div id="emotion">
<div id="emotion-anger">
<img src="assets/icons/angry.png" alt="" />
</div>
<div id="emotion-fear">
<img src="assets/icons/fear.png" alt="" />
</div>
<div id="emotion-happy">
<img src="assets/icons/happy.png" alt="" />
</div>
<div id="emotion-sad">
<img src="assets/icons/sad.png" alt="" />
</div>
<div id="emotion-surprise">
<img src="assets/icons/surprise.png" alt="" />
</div>
</div>
<footer>
<div>
<a href="https://ko-fi.com/dinodroid">
<img src="https://ko-fi.com/img/Kofi_Logo_Blue.svg" height="30"
/></a>
</div>
<div>
Made with <i style="color:red">♥</i> by dinodroid using
<a href="https://jeeliz.com/">
<img
src="https://jeeliz.com/wp-content/uploads/2018/01/LOGO_JEELIZ_BLUE.png"
height="22"
/></a>
</div>
</footer>
</div>
<script src="src/js/jeelizFaceTransfer.js"></script>
<script src="src/js/emotion.js"></script>
<script src="src/js/main.js"></script>
</body>
</html>