Skip to content

Commit f7ea4ec

Browse files
committed
Added game
1 parent 3d2b05e commit f7ea4ec

File tree

3 files changed

+459
-0
lines changed

3 files changed

+459
-0
lines changed

flappyBox.zip

1.91 KB
Binary file not shown.

index.html

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>flappyBox by towc</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> <!--320-->
6+
7+
<style>
8+
body {
9+
background-color:#333;
10+
}
11+
#c {
12+
position: absolute;
13+
left:0;
14+
top:calc(50% - 74vw);
15+
width: 100%;
16+
}
17+
#error {
18+
19+
position: absolute;
20+
top: calc(50% - 20px );
21+
left: 0;
22+
width: 100%;
23+
color: white;
24+
text-align: center;
25+
font: 40px Verdana;
26+
27+
display: none;
28+
}
29+
@media screen and (min-width: 66.6vh){
30+
31+
#c {
32+
position:absolute;
33+
top:0;
34+
left:calc(50% - 33.3vh);
35+
height:100%;
36+
width: auto;
37+
}
38+
}
39+
@media screen and (orientation: landscape) and (max-height: 500px ){
40+
41+
#error {
42+
43+
display: inline-block;
44+
}
45+
#c {
46+
47+
display: none;
48+
}
49+
}</style>
50+
</head>
51+
<body>
52+
<canvas id=c></canvas>
53+
<p id=error>Please don't use lanscape mode</p>
54+
<script src=index.js></script>
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)