-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (48 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Engine</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
@font-face{
src:url("assets/fonts/FutilePro.ttf");
font-family:ExpressionPro;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: stretch;
height: 100%;
width: 100%;
background: #171717;
}
html {
height: 100%;
width: 100%;
}
#canvas,#postprocess {
display: none;
}
#info{
position:absolute;
font-size:75px;
color:#eee;
left:0;
font-family:ExpressionPro;
}
</style>
</head>
<body>
<div id="info"></div>
<canvas id='i' width='960' height='720'></canvas>
<canvas id='postprocess' width='960' height='720'></canvas>
<canvas id='canvas' width='320' height='240'></canvas>
<script src="stackblur.js"></script>
<script src="fisheye.js"></script>
<script src="main.js"></script>
</body>
</html>