forked from rahatchd/rock-the-boat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 1.29 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
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>rock-the-boat</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="anchor.png" />
<style>
body {
color: #000;
font-family:Monospace;
font-size:13px;
margin: 0px;
overflow: hidden;
}
a {
color: #a06851;
}
#webGL-canvas {
position: absolute;
width: 100%;
height: 100%;
}
#boat-canvas {
text-align: center;
position: absolute;
height: 100%;
width: 100%;
display: none;
z-index: 10;
color: black;
}
div.dg {
z-index: 10 !important;
}
</style>
</head>
<body>
<script src="js/three.min.js"></script>
<script src="js/mirror.js"></script>
<script src="js/watershader.js"></script>
<script src="js/detector.js"></script>
<script src="js/stats.min.js"></script>
<script src="js/dat.gui.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/drawBoat.js"></script>
<script src="main.js"></script>
<div id="webGL-canvas"></div>
<div id="boat-canvas"> Draw, draw, draw your boat <br> Gently on the screen </div>
</body>
</html>