-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.5 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
<!doctype html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style/main.css" />
</head>
<body>
<div id="background"></div>
<div id="infoContainer">
<h1 id="header">Emojification Engine</h1>
<div class="content">
<div id="explanation">
Explore your photos in breathtaking 4k 3d emoji-vision. Upload a photo or take one with your camera (if supported) to get started.
</div>
<div id="controls">
<div class="controlContainer initialControl" id="imageUploadButtonContainer">
Upload a Photo
<input type="file" name="imageUpload" id="imageUploadButton" />
</div>
<div class="controlContainer initialControl" id="takePhotoButton">Take Photo</div>
<div id="emojifyButton" class="hidden controlContainer">Emojify!</div>
</div>
</div>
</div>
<div id="resultControls" class="hidden">
<button id="toggle3DButton">3D</button>
</div>
<canvas id="canvas" class="hidden"></canvas>
<video class="hidden" width="640" height="480" id="video"></video>
<script type="text/javascript" src="script/q.js"></script>
<script type="text/javascript" src="script/three.min.js"></script>
<script type="text/javascript" src="script/trackball.js"></script>
<script type="text/javascript" src="script/emojimosaic.js"></script>
</body>
</html>