-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LFO</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/blocks.css/dist/blocks.min.css" />
</head>
<body>
<div class="container">
<!-- <h1>Sinus Tone Generator</h1> -->
<p class="block fixed">Click and hold anywhere to 🔊</p>
<footer>
<button id="lfoWaveformBtn" class="osc lfo block">
<h2>LFO</h2>
<p id="lfoWaveformLabel" class="wave-btn block">sine</p>
<p class="block round fixed"><span id="lfoFrequencyValue">10</span> Hz</p>
</button>
<button id="oscillatorWaveformBtn" class="osc oscillator block">
<h2>OSC</h2>
<p id="oscillatorWaveformLabel" class="wave-btn block">sine</p>
<p class="block round fixed"><span id="oscillatorFrequencyValue">100</span> Hz</p>
</button>
</footer>
</div>
<script src="scripts.js"></script>
</body>
</html>