-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1 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
<!doctype html>
<html>
<head>
<title>Let the rainbow shine</title>
<link href="css/app.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="left">
<canvas id="rainbow" width="400" height="400" ></canvas>
</div>
<div id="first">
<canvas id="myDrawing" width="400" height="300" ></canvas>
</div>
<div class="right">
<canvas id="blank" width="100" height="400"></canvas>
</div>
<div class="overlay">
</div>
<div class="upperOverlay">
</div>
<div class="lowerOverlay">
</div>
<div id="last">
<canvas id="myCanvas" width="500" height="200" ></canvas>
</div>
<div id="rightEye">
<canvas id="myCanvasRight" width="500" height="200" ></canvas>
</div>
<div id="cropFaceLeft">
</div>
<div id="cropHeadTop">
</div>
<div class="cropJawBottom">
</div>
</div>
<script src="js/rainbow.js"></script>
</body>
</html>