-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
38 lines (36 loc) · 839 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Oscilloscope</title>
<style>
body {
margin: 0;
background-color: #1a1a1a;
color: #dddddd;
text-align: center;
}
canvas {
display: block;
}
button {
margin-top: 100px;
padding: 1em 2em;
font-size: 1.5em;
}
</style>
</head>
<body>
<button>Start Example</button>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/oscilloscope.min.js"></script>
<!-- Examples -->
<script src="microphone.js"></script>
<!-- <script src="audio-element.js"></script> -->
<!-- <script src="custom.js"></script> -->
<script>
document.querySelector('button').addEventListener('click', function() {
document.querySelector('button').style.display = 'none';
startExample();
})
</script>
</body>
</html>