-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (153 loc) · 4.86 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | Revert</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<div id="UnityBox">
<div id="unity-container" class="TopPart">
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">Revert</div>
</div>
<canvas id="unity-canvas"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<div id="unity-mobile-warning">
WebGL builds are not supported on mobile devices.
</div>
</div>
</div>
<script type="text/javascript">
$().ready(function() {
jQuery.getJSON("https://api.github.com/repos/o0oradaro0o/RevertWeb/commits", function(data) {
console.log(data[0].commit)
for (var i=0;i<10;i++)
{
var d = new Date(data[i].commit.committer.date);
$('#myTable').append('<tr><td>'+data[i].commit.committer.name+'</td><td>'+data[i].commit.message+'</td><td>'+d.toLocaleString()+'</td></tr>');
}
});
});
</script>
<div id="PCLink">
<h3>PC Download</h3>
<p>This build is not updated as regularally but will run a lot smoother.</p>
<a href="https://drive.google.com/file/d/1R7QZ1Q9xo8sibRQPcZPIy5h4FQnu-eaw/view?usp=sharing" target="_blank">Download zipped exe</a>
</div>
<div id="commitHistory">
<h2>Recent Updates:</h2>
<div>
<table id="myTable">
<tbody><tr>
<th>Uploader</th>
<th>Change</th>
<th>Date</th>
</tr>
</table>
</div>
</div>
<style>
#commitHistory
{
position: fixed;
left: 0;
bottom: 0;
width: 85%;
height:30vh;
overflow: scroll;
}
#PCLink
{
position: fixed;
bottom: 0;
right: 0;
width: 13%;
height:30vh;
}
#unity-container
{
}
#unity-canvas
{
margin: auto;
height:65vh;
aspect-ratio: 16 / 9;
}
#UnityBox
{
margin: auto;
height:80vh;
width: 80vw;
}
table {
width: 100%;
}
th {
background: #f1f1f1;
font-weight: bold;
padding: 6px;
}
td {
padding: 6px;
}
tr:nth-child(even) {
background-color: #Dff1ff;
}
</style>
<script>
var buildUrl = "Build";
var loaderUrl = buildUrl + "/RevertGitWeb.loader.js";
var config = {
dataUrl: buildUrl + "/RevertGitWeb.data",
frameworkUrl: buildUrl + "/RevertGitWeb.framework.js",
codeUrl: buildUrl + "/RevertGitWeb.wasm",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "Revert",
productVersion: "0.1",
};
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
var mobileWarning = document.querySelector("#unity-mobile-warning");
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
container.className = "unity-mobile";
config.devicePixelRatio = 1;
mobileWarning.style.display = "block";
setTimeout(() => {
mobileWarning.style.display = "none";
}, 5000);
} else {
}
loadingBar.style.display = "block";
var script = document.createElement("script");
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
loadingBar.style.display = "none";
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
</script>
</body>
</html>