29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<!-- <link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet"> -->
|
|
<title>simple-synth</title>
|
|
</head>
|
|
|
|
|
|
<body class="bg-gray-900 p-10 mb-5">
|
|
|
|
<script src="single-voice-synth.js"></script>
|
|
<div class="flex justify-between"></div>
|
|
<button onclick="toggleOscillator()">Start/Stop</button>
|
|
<input type="range" min="-40" max="40" value="0" class="slider" id="detune">
|
|
<form>
|
|
<input type="radio" id="sine" name="wave" value="sine" checked>
|
|
<label for="sine">Sine</label><br>
|
|
<input type="radio" id="triangle" name="wave" value="triangle">
|
|
<label for="triangle">Triangle</label><br>
|
|
<input type="radio" id="square" name="wave" value="square">
|
|
<label for="square">Square</label><br>
|
|
<input type="radio" id="sawtooth" name="wave" value="sawtooth">
|
|
<label for="sawtooth">Sawtooth</label>
|
|
</form>
|
|
</body>
|