forked from fragglet/js-doom-textures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Texture viewer</title>
<style>
body {
margin: 0;
}
canvas {
margin: 1px;
}
.top-bar {
position: fixed;
top: 0;
width: 100%;
background-color: black;
text-align: center;
font-family: sans-serif;
font-weight: bold;
color: lightgrey;
padding: 5px;
}
.top-bar a {
color: lightgrey;
}
#texture-list {
margin-top: 2em;
margin-left: 5px;
margin-right: 5px;
}
</style>
</head>
<body>
<div class="top-bar">
<a href="?game=freedoom1">Freedoom 1</a> |
<a href="?game=heretic">Heretic</a> |
<a href="?game=doom1">Doom</a> |
<a href="?game=doom2">Doom II</a>
</div>
<div id="texture-list"></div>
<div id="flats-list"></div>
<script>
if ((!location.port || location.port == "80") && location.protocol != 'https:') {
location.protocol = 'https:';
}
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('service-worker.js', { scope: ' ' })
.then(() => {
console.log('Service worker registered.');
})
.catch(err => {
console.log('Error registering service worker:' + err);
});
}
</script>
<script src="out/bundle.js"></script>
</body>
</html>