42 lines
No EOL
941 B
HTML
42 lines
No EOL
941 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FFT generator</title>
|
|
</head>
|
|
|
|
<body>
|
|
<audio id="audio"></audio>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts">
|
|
</script>
|
|
<button id="button">Analyze!</button>
|
|
<svg id="waveform-canvas" viewBox="0 0 500 500" preserveAspectRatio="none"></svg>
|
|
<style>
|
|
body {
|
|
width: 100%;
|
|
height: 100vh;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
button {
|
|
padding: 1.2rem 2rem;
|
|
}
|
|
|
|
svg {
|
|
margin-top: 5rem;
|
|
width: 500px;
|
|
height: 500px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
</body>
|
|
|
|
</html> |