-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvoice-runtime.html
More file actions
28 lines (28 loc) · 1.07 KB
/
voice-runtime.html
File metadata and controls
28 lines (28 loc) · 1.07 KB
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="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Melody Voice Runtime</title>
<link rel="icon" href="data:," />
<!-- 引入 Atomic Pro Desk 专业排版字体 -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;700&family=Oswald:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/voice-runtime.css" />
</head>
<body>
<div id="app">
<div id="toolbar">
<button id="btn-play" data-i18n="pianoRoll.play">播放</button>
<button id="btn-import" data-i18n="pianoRoll.import_midi">导入 MIDI</button>
<input type="file" id="midi-file-input" accept=".mid,.midi" hidden />
</div>
<div id="piano-roll-container">
<div id="playhead"></div>
</div>
<div id="status-bar">
<span id="status-text"></span>
</div>
</div>
<script type="module" src="/src/voice-runtime/main.js"></script>
</body>
</html>