-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (80 loc) · 2.98 KB
/
index.html
File metadata and controls
119 lines (80 loc) · 2.98 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html id="page" >
<head>
<meta charset="UTF-8">
<meta property="og:url" content="http://a6ba0cdd.ngrok.io" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Упакуй меня, если сможешь!" />
<meta property="og:description" content="Эта математическая игра будет покруче 2048" />
<meta property="og:image" content="http://a6ba0cdd.ngrok.io/npgame/res/share.jpg" />
<script src="lib/jquery-3.3.1.min.js"></script>
<script src="lib/pixi.min.js"></script>
<script src="lib/TweenMax.min.js"></script>
<script src="lib/CustomEase.js"></script>
<script src="lib/CubicBezier.js"></script>
<script src="lib/fmath.js"></script>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<script src="//vk.com/js/api/openapi.js" type="text/javascript"></script>
<script>
//window.PIXILoaderBaseUrl = "https://www.google.com";
window.RESULT_MODAL_IN_MENU = false;
window.API_PHP_FILE = 'http://localhost:80/index.php';
window.VK_APP_ID = 6445810;
window.VK_PHOTO_LINK = 'photo2882845_456239374';
window.LINK_TO_SOCIAL = window.location.origin; //????
window.FB_APP_ID = '332998647104459';
window.PIXIRatio = 0.5;
</script>
<script src="lib/require.js"></script>
<script src="bundle/bundle_obf.js"></script>
<script>
requirejs(['main'], function(foo) {});
window.startTime = new Date();
function doubleRescale() {
setTimeout(rescale, 600);
rescale();
}
function onWindowResize() {
doubleRescale();
window.scrollTo(0,1);
}
</script>
</head>
<body style="border: none; margin: 0px ">
<script type="text/javascript">
VK.init({
apiId: window.VK_APP_ID
});
</script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : window.FB_APP_ID,
xfbml : true,
version : 'v2.5'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
/* window.twttr = (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs")); */
</script>
</body>
</html>