-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (80 loc) · 2.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Yeet Flap</title>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="description" content="" />
<meta name="author" content="Piecesnbits" />
<meta name="keywords" content="yeet bera berachain flappy" />
<meta property="og:title" content="" />
<meta property="og:description" content="Yeet flap game" />
<meta property="og:type" content="website" />
<script language="JavaScript">
var bird_picture = "default/yeetard.png";
var tube1_picture = "default/tube3.png";
var tube2_picture = "default/tube2.png";
var ground_picture = "default/ground.png";
var bg_picture = "default/bg.png";
var game_over_fillcolor = "#000";
var game_over_strokecolor = "#fff";
var score_fillcolor = "#000";
var score_strokecolor = "#fff";
var title_fillcolor = "#000";
var title_strokecolor = "#fff";
var wing_sfx = "default/yeet2.mp3";
var point_sfx = "default/sfx_point.mp3";
var hit_sfx = "default/sfx_hit.mp3";
var die_sfx = "default/sfx_die.mp3";
var swooshing_sfx = "default/sfx_swooshing.mp3";
var game_title = "Yeet Flap";
var game_instructions = "Tap/Click to Jump";
var game_over = "GAMEOVER";
var high_score = "HIGH SCORE";
var try_again = "try again";
function inIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}
if (inIframe()) {
console.log("running in iframe");
} else {
console.log("running in window");
// document.querySelector("#loading").style.display = "none";
}
</script>
<style>
body {
margin: 0;
padding: 0;
height: 100%;
background: #000;
}
#screen canvas {
margin: 0 auto;
}
#loading {
position: absolute;
font-family: "Verdana";
width: 100%;
text-align: center;
color: white;
font-size: 24px;
top: 50%;
display: none;
}
</style>
<!-- Latest compiled and minified CSS -->
<!-- <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" /> -->
<!-- Font Awesome -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
</head>
<body style="background-color: black">
<div id="loading">Loading...</div>
<div id="screen"></div>
</body>
<!-- Flappy Bird Game -->
<script src="flappy.min.js"></script>
</html>