-
Notifications
You must be signed in to change notification settings - Fork 34
/
index_dev.html
86 lines (83 loc) · 5.11 KB
/
index_dev.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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Ball And Wall - Simple arkanoid style game</title>
<meta charset="UTF-8">
<meta name="description" content="Ball And Wall (html5 game) - Simple arkanoid style game with nice graphics and cool gameplay">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1,user-scalable=no,minimal-ui">
<meta name="msapplication-tap-highlight" content="no">
<meta property="og:site_name" content="Ball And Wall">
<meta property="og:title" content="Ball And Wall">
<meta property="og:url" content="http://ballandwall.com/">
<meta property="og:title" content="Ball And Wall">
<meta property="og:image" content="images/icons/128x128.png">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="homescreen.png">
<link rel="apple-touch-icon-precomposed" href="homescreen.png">
<link rel="apple-touch-icon" sizes="72x72" href="homescreen-72.png">
<link rel="apple-touch-icon" sizes="114x114" href="homescreen-114.png">
<link rel="apple-touch-icon" sizes="144x144" href="homescreen-144.png">
<!-- build:css dist/common.css -->
<link rel="stylesheet" href="css/gumby.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen">
<link rel="stylesheet" media="only screen and (min-width: 1100px) and (min-height: 651px)" href="css/1280.css">
<link rel="stylesheet" media="only screen and (min-width: 1100px) and (max-height: 650px)" href="css/1280-wide.css">
<link rel="stylesheet" media="only screen and (min-width: 960px) and (max-width: 1099px) and (min-height: 651px)" href="css/1024.css">
<link rel="stylesheet" media="only screen and (min-width: 960px) and (max-width: 1099px) and (max-height: 650px)" href="css/1024-wide.css">
<link rel="stylesheet" media="only screen and (min-width: 767px) and (max-width: 959px) and (min-height: 551px)" href="css/800.css">
<link rel="stylesheet" media="only screen and (min-width: 767px) and (max-width: 959px) and (max-height: 550px)" href="css/800-wide.css">
<link rel="stylesheet" media="only screen and (min-width: 560px) and (max-width: 766px) and (min-height: 451px)" href="css/640.css">
<link rel="stylesheet" media="only screen and (min-width: 560px) and (max-width: 766px) and (max-height: 450px)" href="css/640-wide.css">
<link rel="stylesheet" media="only screen and (max-width: 559px)" href="css/480.css">
<link rel="stylesheet" media="only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape)" href="css/iphone5-landscape.css">
<link rel="stylesheet" media="only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait)" href="css/iphone5-portrait.css">
<link rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1)" href="css/ipad.css">
<link rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2)" href="css/ipad-retina.css">
<!-- /build -->
<!-- build:js js/_config_prod.js -->
<script src="js/_config_dev.js"></script>
<!-- /build -->
<script src="js/lib/require/require.js"></script>
<script>
require.config({
baseUrl: SS + 'js',
paths: {
fancyselect: '../bower_components/fancyselect/fancySelect',
q: '../bower_components/q/q',
md5: '../bower_components/js-md5/js/md5.min'
}
});
</script>
</head>
<body oncontextmenu="return false;" class="class-index-page">
<a style="position: absolute; right: 0; top: 0; z-index: 10;" href="https://github.com/budnix/ball-and-wall" class="fork-me">
<img style="border: 0; height: 149px; width: 149px;" src="http://aral.github.com/fork-me-on-github-retina-ribbons/[email protected]" alt="Fork me on GitHub">
</a>
<div id="indicator-container">
<img src="images/indicator.gif" alt="Loading ..." />
</div>
<div id="a-auth-wrapper">
<a href="levels-editor.html" id="a-level-editor"></a>
</div>
<div id="a-container">
<div id="a-game-wrapper">
<div id="a-game-canvases">
<canvas id="a-game-dashboard" width="417" height="214" ></canvas>
<canvas id="a-game-canvas" width="798" height="462" >
Your browser not supported this game
</canvas>
</div>
<div id="a-game-bottom-line"></div>
</div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="js/lib/createjs/createjs.min.js"></script>
<script src="js/lib/createjs/soundjs-0.5.2.min.js"></script>
<!-- build:js dist/output.min.js -->
<!-- /build -->
<script src="js/index.js"></script>
</body>
</html>