summaryrefslogtreecommitdiff
path: root/tools/editor/index.html
blob: 73356bd8c7f8807f77bca6fcb19bd085414963b2 (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Spectrogram Editor</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h1>Spectrogram Editor</h1>
    
    <input type="file" id="specFileInput" accept=".spec">
    <label for="specFileInput">Load SPEC File</label>

    <div id="editorContainer">
        <canvas id="spectrogramCanvas"></canvas>
        <div id="controls">
            <h2>Tools</h2>
            <button id="lineTool">Line</button>
            <button id="ellipseTool">Ellipse</button>
            <button id="noiseTool">Noise</button>
            <!-- Add more tool controls later -->
        </div>
    </div>

    <script src="script.js"></script>
</body>
</html>