-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FLAPPY</title>
<style>
body
{
background-color: #009DFF;
}
#flappy-bird-reborn
{
overflow: hidden;
margin-top:30%;
margin: auto;
width: 288px;
}
.info
{
width: 50%;
text-align: center;
margin: auto;
margin-top: 20px;
}
a
{
color:black;
}
</style>
</head>
<body>
<div id="flappy-bird-reborn" style="overflow: hidden;margin-top:-400px;">
<canvas width="288" height="505" style="display: block; touch-action: none; -webkit-user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: inherit;"></canvas>
</div>
<p class="info">
Välkommen till vårt spel. Dett gjordes i kursen TFYA65 på Linköpings Universitet campus Norrköping höstterminen 2014. Ni kan läsa om allt vi gjorde i vår <a href="report/flappa_freqt_cecla125_danro716_theko867.pdf">rapport</a>
</p>
<script src="js/audioCatcher.js"></script>
<script src="js/phaser.js"></script>
<script src="js/game.js"></script>
</body>
</html>