forked from gn-math/html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path157.html
More file actions
100 lines (85 loc) · 2.85 KB
/
157.html
File metadata and controls
100 lines (85 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="https://cdn.jsdelivr.net/gh/bubbls/youtube-playables@ed57fd6dbc91143221b05fdf61be73bacc375843/hill-climb-racing-lite/">
<meta charset="ut-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui, shrink-to-fit=no">
<meta name="mobile-web-app-capable" content="yes">
<script src="https://cdn.jsdelivr.net/gh/bubbls/youtube-playables@main/ytgame.js" nonce="TPIafyWGMIB2_8Gk5HFfiA"></script>
<!-- <script src="dmloader.js"></script> -->
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Store values in a hidden div or data attributes -->
<div id="engine-config"
data-engine-arguments="--verify-graphics-calls=false,"
data-custom-heap-size= "33554432"
data-exe-name= "HCRLite"
data-display-width= "470"
data-display-height= "836"></div>
<!-- <div id="engine-config"
data-engine-arguments="test"
data-custom-heap-size= 128
data-exe-name= "HCRLite"
data-display-width= 470
data-display-height= 836 ></div> -->
<!--<script src="dmloader.js"></script>-->
<script src="loader.js" nonce="TPIafyWGMIB2_8Gk5HFfiA"></script>
<script src="yt-functions.js" nonce="TPIafyWGMIB2_8Gk5HFfiA"></script>
<title>HCR Lite 1.0</title>
<style type='text/css'>
/* Disable user selection to avoid strange bug in Chrome on Windows:
* Selecting a text outside the canvas, then clicking+draging would
* drag the selected text but block mouse down/up events to the engine.
*/
body {
position: fixed; /* Prevent overscroll */
margin:0;
padding:0;
}
.canvas-app-container {
width: 100%;
height: 100%;
position: absolute;
align-items: center;
justify-content: center;
overflow: hidden;
}
.canvas-app-container:-webkit-full-screen {
/* Auto width and height in Safari/Chrome fullscreen. */
width: auto;
height: auto;
}
#canvas {
outline: none;
border: 0;
width: 100%;
vertical-align: bottom;
}
#canvas-container {
position: relative;
}
canvas:focus, canvas:active {
outline: none;
border: 0;
ie-dummy: expression(hideFocus=true);
-moz-outline-style: none;
}
div {
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
</head>
<body>
<div id="app-container" class="canvas-app-container">
<div id="canvas-container" class="canvas-app-canvas-container">
<canvas id="canvas" class="canvas-app-canvas" tabindex="1" width="470" height="836"></canvas>
</div>
</div>
</body>
</html>