-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·49 lines (46 loc) · 2.08 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--[if gte IE 9]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<!--[if lt IE 9]><meta http-equiv="X-UA-Compatible" content="IE=7" /><![endif]-->
<title>The Bird is the Word</title>
<meta name="description" content="">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/birdie.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script>
if (!window.jQuery) {
document.write('<script src="js/vendor/jquery-2.1.1.js"><\/script>');
}
</script>
</head>
<body>
<div id="wrapper">
<h1>The Bird is the Word!</h1>
<div id="canvas-container">
<canvas id="card" width="1000" height="750"></canvas>
<button id="play" type="button" autofocus="autofocus"></button>
</div>
<p>
<a href="https://github.com/mrengy/birdie-animation" title="browse the code used to create this" alt="browse the code used to create this">View code on Github</a>
</p>
</div>
<script type="text/javascript" src="js/vendor/waapisim/waapisim.js"></script>
<script src="js/birdie.js"></script>
<script type="text/javascript">
//only load google analytics if this is not running locally
if (document.URL.indexOf('file://localhost') < 0){
(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-50607567-1', 'mike-eng.com');
ga('send', 'pageview');
}
</script>
</body>
</html>