-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (66 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flappy Branco Fatec</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Adam Macias" />
<meta name="description" content="Flappy Branco (Fatec) é um remake do popular jogo flappy bird, redesenhado com o Branco, famoso gato que circula pelos corredores da Fatec Baixada Santista Rubens Lara" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<link rel="author" href="https://plus.google.com/117839494541292456644" title="Adam Requena Macias"/>
<meta name="google-site-verification" content="XEgHpnU39cxwefm0ForRG0QF_7sGdbfZIY4HsGTQyLQ" />
<!-- Open Graph tags -->
<meta property="og:title" content="Flappy Branco" />
<meta property="og:description" content="Flappy Branco (Fatec) é um remake do popular jogo flappy bird, redesenhado com o Branco, famoso gato que circula pelos corredores da Fatec Baixada Santista Rubens Lara" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://adammacias.github.io/flappy-branco/assets/thumb.png" />
<meta property="og:url" content="http://adammacias.github.io/flappy-branco/" />
<meta property="og:site_name" content="Flappy Branco" />
<!-- Style sheets -->
<link href="css/reset.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47910501-2', 'adammacias.github.io');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="gamecontainer">
<div id="gamescreen">
<div id="sky" class="animated">
<div id="flyarea">
<div id="ceiling" class="animated"></div>
<!-- This is the flying and pipe area container -->
<div id="player" class="bird animated"></div>
<div id="bigscore"></div>
<div id="splash"></div>
<div id="scoreboard">
<div id="medal"></div>
<div id="currentscore"></div>
<div id="highscore"></div>
<div id="replay"><img src="assets/replay.png" alt="replay"></div>
</div>
<!-- Pipes go here! -->
</div>
</div>
<div id="land" class="animated"><div id="debug"></div></div>
<div id="land-fatec"></div>
</div>
</div>
<div id="footer">
<a href="http://www.dotgears.com/" target="_blank">Game original por dong nguyen</a>
<a href="http://adammacias.com.br" target="_blank" title="Adam Macias (Desenvolvedor Web)">Game redesenhado por Adam Macias (Fatecano)</a>
<!-- <a href="http://github.com/adammacias/flappy-branco/" target="_blank">ver projeto no Github</a> -->
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fadammacias.github.io%2Fflappy-branco%2F&width&layout=standard&action=like&show_faces=true&share=false&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true" style="margin-top:40px"></iframe>
</div>
<div class="boundingbox" id="playerbox"></div>
<div class="boundingbox" id="pipebox"></div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.transit.min.js"></script>
<script src="js/buzz.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>