-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (79 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="./assets/icon2.png" />
<title>sv editor 2</title>
<!-- Meta tags for SEO and social sharing -->
<!--link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
<meta
name="description"
content="A simple website, built with Glitch. Remix it to get your own."
/>
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Hello World!" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://glitch-hello-website.glitch.me/" />
<meta
property="og:description"
content="A simple website, built with Glitch. Remix it to get your own."
/>
<meta
property="og:image"
content="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2Fhello-website-social.png?v=1616712748147"
/>
<meta name="twitter:card" content="summary" /-->
<link rel="stylesheet" href="./style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.3/howler.core.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/6.3.0/browser/pixi.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"
integrity="sha512-XMVd28F1oH/O71fzwBnV7HucLxVwtxf26XV8P4wPk26EDxuGZ91N8bsOttmnomcCD3CS5ZMRL50H0GgOHvegtg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!--script src="./script.js" defer></script-->
<script src="./utils.js"></script>
<script>
/* omg its global scope (for debuggo) */ var project;
/* global scope for exporting */ var codecs;
</script>
<!--script type="module" src="./parser.js" defer></script-->
<script type="module" src="./dist/bundle.js" defer></script>
<script src="./lib/calculator.js"></script>
</head>
<body>
<div id="loader">
<div id="selector">
osu beatmap:
<label>
.osz, .zip
<input
class="fileType"
value="zip"
name="fileType"
type="radio"
checked="true"
/>
</label>
<label>
folder
<input class="fileType" value="folder" name="fileType" type="radio" />
</label>
</div>
<label id="folderSelector" style="display: none">
<input
type="file"
id="folder"
name="fileList"
webkitdirectory
multiple
/>
</label>
<label id="zipSelector">
<input type="file" id="zip" name="fileList" accept=".zip,.osz" />
</label>
</div>
</body>
</html>