-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·95 lines (89 loc) · 5.34 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="./css/reset.css" type="text/css">
<link rel="stylesheet" href="./css/main.css" type="text/css">
<link rel="stylesheet" href="./css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="./css/dataTables.min.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui" />
<meta name="msapplication-tap-highlight" content="no"/>
<script type="text/javascript" src="./js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="./js/createjs-2014.12.12.min.js"></script>
<!--<script type="text/javascript" src="js/ctl_utils.js"></script>
<script type="text/javascript" src="js/sprite_lib.js"></script>
<script type="text/javascript" src="js/CVector2.js"></script>
<script type="text/javascript" src="js/settings.js"></script>
<script type="text/javascript" src="js/settingsGoalKeeper.js"></script>
<script type="text/javascript" src="js/CLang.js"></script>
<script type="text/javascript" src="js/CPreloader.js"></script>
<script type="text/javascript" src="js/CMain.js"></script>
<script type="text/javascript" src="js/CTextButton.js"></script>
<script type="text/javascript" src="js/CToggle.js"></script>
<script type="text/javascript" src="js/CGfxButton.js"></script>
<script type="text/javascript" src="js/CMenu.js"></script>
<script type="text/javascript" src="js/CSelectTeam.js"></script>
<script type="text/javascript" src="js/CGame.js"></script>
<script type="text/javascript" src="js/CInterface.js"></script>
<script type="text/javascript" src="js/CEndPanel.js"></script>
<script type="text/javascript" src="js/CGoal.js"></script>
<script type="text/javascript" src="js/CPlayer.js"></script>
<script type="text/javascript" src="js/CGoalKeeper.js"></script>
<script type="text/javascript" src="js/CLevel.js"></script>
<script type="text/javascript" src="js/CBall.js"></script>
<script type="text/javascript" src="js/CWall.js"></script>
<script type="text/javascript" src="js/CCrowd.js"></script>
<script type="text/javascript" src="js/CShotIndicatorController.js"></script>-->
<!--<script type="text/javascript" src="js/penalty.js"></script>-->
<script type="text/javascript" src="./js/penalty.js"></script>
<script type="text/javascript" src="./js/moment.min.js"></script>
<script src="./js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script TYPE="text/javascript" src="./js/jquery.dataTables.min.js"></script>
</head>
<body ondragstart="return false;" ondrop="return false;" >
<div style="position: fixed; background-color: transparent; top: 0px; left: 0px; width: 100%; height: 100%"></div>
<script>
</script>
<canvas id="canvas" class='ani_hack' width="1360" height="640"> </canvas>
<div id="block_game" style="position: fixed; background-color: transparent; top: 0px; left: 0px; width: 100%; height: 100%; display:none"></div>
<div id="lbmodal" style="display:none" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Leaderboards</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-6 btn-group" data-toggle="buttons">
<label class="btn btn-primary active" onclick="alltime()">
<input type="radio" name="options" autocomplete="off" checked> All Time
</label>
<label class="btn btn-primary" onclick="weekly()">
<input type="radio" name="options" autocomplete="off"> This Week
</label>
<label class="btn btn-primary" onclick="monthly()">
<input type="radio" name="options" autocomplete="off"> This Month
</label>
</div>
<div class="col-md-offset-2 col-md-4" id="rank" />
</div>
<table id="leaderboard" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>SN</th>
<th>Name</th>
<th>Score</th>
</tr>
</thead>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
</body>
</html>