-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
46 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Mario Soundboard</title>
<meta name=viewport content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="robots" content="noindex, nofollow">
<link rel=icon href='img/favicon.png'>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" type="text/css" href="css/mario-style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/howler/2.1.3/howler.core.min.js'></script>
<script type='module'>
import MarioSoundboard from './js/mario-soundboard.js';
window.s = new MarioSoundboard(); // for debugging
</script>
</head>
<body>
<div id="loading-wrapper">
<img id="loading-icon" src="img/coin-nsmb.gif">
</div>
<div id="content-wrapper" class='hidden'>
<!--
<div id="menu-wrapper">
<div id="btn-pause"></div>
</div>
-->
<div id="item-wrapper">
</div>
</div>
</body>
</html>