-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (61 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="rsc/Icon@2x.png" />
<link rel="apple-touch-icon" sizes="57x57" href="rsc/Icon.png" />
<link rel="apple-touch-icon" sizes="72x72" href="rsc/Icon-72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="rsc/Icon@2x.png" />
<link rel="apple-touch-icon" sizes="144x144" href="rsc/Icon@2x.png" />
<title>WEBack</title>
<script src="lib/tmlib.js"></script>
<!-- <script src="lib/ccchart.js"></script> -->
<!-- <script src="https://raw.github.com/mrdoob/stats.js/master/src/Stats.js"></script> -->
<script src="js/resource.js"></script>
<script src="js/param.js"></script>
<script src="js/mylib/drag.js"></script>
<script src="js/mylib/iphonebluebutton.js"></script>
<script src="js/mylib/inertia.js"></script>
<script src="js/mylib/iphonepicker.js"></script>
<script src="js/tmchart/extendscroll.js"></script>
<script src="js/tmchart/baloon.js"></script>
<script src="js/tmchart/chartcircle.js"></script>
<script src="js/tmchart/chartring.js"></script>
<script src="js/tmchart/tmchart.js"></script>
<script src="js/mylib/once.js"></script>
<script src="js/mylib/progressbar.js"></script>
<script src="js/mylib/timer.js"></script>
<script src="js/mylib/counter.js"></script>
<script src="js/button.js"></script>
<script src="js/numberbutton.js"></script>
<script src="js/settingspeedbutton.js"></script>
<script src="js/factorynumberbuttons.js"></script>
<script src="js/factorysettingbacknumbers.js"></script>
<script src="js/factorysettingspeed.js"></script>
<script src="js/factorysettingquestnumber.js"></script>
<script src="js/memory.js"></script>
<script src="js/questnumber.js"></script>
<script src="js/scene/titlescene.js"></script>
<script src="js/scene/openingscene.js"></script>
<script src="js/scene/recordscene.js"></script>
<script src="js/scene/mainscene.js"></script>
<script src="js/scene/endscene.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33727447-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<canvas id="world"></canvas>
</body>
</html>