-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompatible.html
66 lines (66 loc) · 2.55 KB
/
compatible.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
<!DOCTYPE html>
<html lang="en" style="margin: 0">
<head>
<meta
http-equiv="origin-trial"
content="Ah+J7iGEj1axTTP82msRWpCKFIc871JVAkv0PbZKvhYER1xYLRKS5ydI8o1zHxz8pVLnzUCjj5rnUzD9/EY+DAcAAACLeyJvcmlnaW4iOiJodHRwczovL2hhY2tmb3JwbGF5Lnh5ejo0NDMiLCJmZWF0dXJlIjoiRGlzYWJsZURpZmZlcmVudE9yaWdpblN1YmZyYW1lRGlhbG9nU3VwcHJlc3Npb24iLCJleHBpcnkiOjE2Mzk1MjYzOTksImlzU3ViZG9tYWluIjp0cnVlfQ=="
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-113487422-6"
></script>
<script>
window.dataLayer = window.dataLayer || [];
// minify されても名前が変わらないようにする
window.gtag = function gtag() {
dataLayer.push(arguments);
};
// チュートリアルの場合のみトラッキングする
if (
document &&
[
'https://www.hackforplay.xyz/works/I4OleAc2rUoJWdWvwJF2', // 後方互換性
'https://www.hackforplay.xyz/works/E0TFzuJeGoO75Fp1QNU0'
].indexOf(document.referrer) > -1
) {
gtag('js', new Date());
gtag('config', 'UA-113487422-6');
}
</script>
<script
id="hackforplay_skins_preload"
src="https://skins.hackforplay.xyz/_preload.js"
async
></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HackforPlay Sandbox</title>
<!-- prefetch -->
<link rel="prefetch" href="./src/resources/8bit_fullscreen.png" />
<link rel="prefetch" href="./src/resources/8bit_reload.png" />
<link rel="prefetch" href="./src/resources/8bit_videogame.png" />
<link rel="prefetch" href="./src/resources/enchantbook.png" />
<link rel="prefetch" href="./src/resources/pad.png" />
<link rel="prefetch" href="./src/resources/pad_pressed.png" />
<link rel="prefetch" href="./src/resources/attack.png" />
<link rel="prefetch" href="./src/fonts/PixelMplus12-Regular.ttf" />
<style>
body {
background-image: url(./src/resources/background.png);
background-repeat: repeat;
font-family: mplus, monospace;
}
@font-face {
font-family: mplus;
src: url(./src/fonts/PixelMplus12-Regular.ttf);
}
</style>
</head>
<body style="margin: 0">
<div id="app"></div>
<script type="module" src="./src/index.ts" async defer></script>
<script src="./src/requestFullScreenPolyfill.js" async defer></script>
</body>
</html>