-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (31 loc) · 893 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<style>
html,body{
width:100%;
height:100%;
padding:0;
margin:0;
}
.stats-window{
position: fixed;
top:0;
left:0;
background: rgba(0,0,0,.4);
color:#fff;
padding:5px 10px;
}
</style>
</head>
<body>
<canvas id="car-canvas"></canvas>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/core/scene.js"></script>
<script src="js/core/layer.js"></script>
<script src="js/core/car.js"></script>
<script src="js/core/road.js"></script>
<script src="js/core/land.js"></script>
<script src="js/init.js"></script>
</body>
</html>