-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (39 loc) · 1.53 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Snake Chase</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<style type="text/css" media="screen">
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
background: #ddd;
}
h1 {
text-align: center;
text-shadow: 0 2px 1px #fff;
}
#snake_chase_app {
border: 1px solid #000;
width: 720px;
height: 540px;
margin: 0 auto;
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
-o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}
</style>
<script src="jah.js" type="text/javascript"></script>
<script src="cocos2d.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
</head>
<body>
<audio autoplay="autoplay">
<source src="assets/resources/snake-chase-bg.mp3" type="audio/mp3" />
Your browser does not support the audio tag.
</audio>
<div id="snake_chase_app">Snake Chase is loading...</div>
</body>
</html>