mirror of
https://github.com/elder-plinius/binaural-beats-generator.git
synced 2026-07-13 14:27:21 +02:00
24 lines
739 B
HTML
24 lines
739 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Binaural Beats Generator</title>
|
|
<style>
|
|
/* Add your CSS styling here */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<label for="deltaSlider">Delta (Hz Difference):</label>
|
|
<input type="range" id="deltaSlider" min="1" max="30" value="10">
|
|
<span id="deltaDisplay">Delta: 10 Hz</span>
|
|
<br>
|
|
<label for="volumeSlider">Volume:</label>
|
|
<input type="range" id="volumeSlider" min="0" max="1" step="0.01" value="0.5">
|
|
<span id="volumeDisplay">Volume: 50%</span>
|
|
<br>
|
|
<button id="togglePlayPause">Play</button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|