forked from ellisonleao/clumsy-bird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (55 loc) · 4.4 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Clumsy Bird</title>
<link rel="apple-touch-icon-precomposed" href="data/img/touch-icon-iphone.png"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="data/img/touch-icon-iphone-retina.png"/>
<link rel="shortcut icon" href="data/img/favicon.ico">
<link rel="stylesheet" type="text/css" media="screen" href="index.css">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Clumsy Bird">
<meta charset="UTF-8" />
<meta name="description" content="Clumsy Bird - A Flappy Bird clone using MelonJS"/>
<meta name="keywords" content="flappybird, flappy, bird, game, html5, melonjs,clone"/>
<meta name="robots" content="index, follow">
<meta name="google-site-verification" content="RDZI9SqVaffd48uHfZMv67-YdvviOMe2HuULEYqVgd4" />
<meta property="og:image" content="http://ellisonleao.github.io/clumsy-bird/data/img/bg.png" />
<meta property="og:title" content="Clumsy Bird - A Flappy Bird clone using MelonJS"/>
<meta property="og:url" content="http://ellisonleao.github.io/clumsy-bird/"/>
<meta property="og:site_name" content="Clumsy Bird - MelonJS"/>
<!-- Twitter Card -->
<meta name="twitter:hashtag" content="clumsybird" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ellisonleao" />
<meta name="twitter:creator" content="@ellisonleao" />
<meta name="twitter:title" content="Clumsy Bird" />
<meta name="twitter:description" content="A Flappy Bird melonJS clone" />
<!-- start Alooma -->
<script type="text/javascript">
(function(e,b){if(!b.__SV){var a,f,i,g;window.alooma=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="alooma";c.people=c.people||[];c.toString=function(b){var a="alooma";"alooma"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable time_event track track_custom_event track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" "); for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof ALOOMA_CUSTOM_LIB_URL?ALOOMA_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.alooma.com/libs/alooma-latest.min.js".match(/^\/\//)?"https://cdn.alooma.com/libs/alooma-latest.min.js":"//cdn.alooma.com/libs/alooma-latest.min.js";f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f)}})(document,window.alooma||[]);alooma.init("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnROYW1lIjoiZ2FtaW5nLWRlbW8iLCJpbnB1dExhYmVsIjoiY2x1bXN5X2JpcmQiLCJpbnB1dFR5cGUiOiJKU1NESyJ9.wpOIAH7gmBUlUAAdHKfED_VvDd-qbbdDlG0H-A_qQFs", {"api_host":"https://inputs.alooma.com"});
</script>
<!-- end Alooma -->
<!-- Humans -->
<link rel="author" href="humans.txt" />
</head>
<body>
<!-- Canvas placeholder -->
<div id="screen"></div>
<!-- melonJS Library -->
<script type="text/javascript" src="js/melonJS-min.js" ></script>
<!--<script type="text/javascript" src="build/clumsy-min.js" ></script> -->
<script type="text/javascript" src="js/game.js" ></script>
<script type="text/javascript" src="js/screens/gameover.js" ></script>
<script type="text/javascript" src="js/screens/play.js" ></script>
<script type="text/javascript" src="js/screens/title.js" ></script>
<script type="text/javascript" src="js/entities/entities.js" ></script>
<script type="text/javascript" src="js/entities/HUD.js" ></script>
<script type="text/javascript">
window.onReady(function onReady() {
game.onload();
});
</script>
</body>
</html>