-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>woscilloscope</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html { background: black; color: #ddd; }
body { position: relative; max-width: 800px; margin: 0 auto 100px; }
canvas { display: block; margin: auto; }
audio { width: 100%; }
h2 { text-align: center; margin: 5px; }
ul { text-align: center; font-size: 20px; margin: 5px; padding: 0;}
li { display: inline-block; margin: 0 10px 0 10px; }
a { color: #2d2; }
noscript, .error { position: absolute; width: 100%; top: 200px;
text-align: center; font-size: 32px; }
footer { text-align: center; font-size: 18px; }
.options { font-size: 18px; }
</style>
<script src="dist/demo.js"> </script>
</head>
<body>
<noscript>Did you expect this thing to work without js enabled?</noscript>
<div id="htmlError" class="error"></div>
<canvas id="c" width=800 height=800></canvas><br>
<audio controls id="htmlAudio"></audio><br>
<h2 id="songInfo">song info goes here</h2>
<ul id="playList"></ul>
<ul id="options" class="options"></ul>
<footer><a href="https://github.com/m1el/woscope">woscope</a> by m1el</footer>
</body>
</html>