-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·26 lines (22 loc) · 966 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Cats in Space</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
<link rel="stylesheet" type="text/css" href="main.css" media="all">
<meta http-equiv="x-dns-prefetch-control" content="off"/></head>
<body>
<img id="face-source-0" src="cat1.png" alt=" " class="face-source">
<img id="face-source-1" src="cat1.png" alt=" " class="face-source">
<img id="face-source-2" src="cat1.png" alt=" " class="face-source">
<img id="face-source-3" src="cat1.png" alt=" " class="face-source">
<img id="face-source-4" src="cat2.png" alt=" " class="face-source">
<div id="cats-container"></div>
<script type="text/javascript" src="three.js"></script>
<script type="text/javascript" src="faces.js"></script>
<script type="text/javascript">
window.onload = Faces.windowInit;
</script>
</body>
</html>